Skip to content

Commit f09d5a0

Browse files
committed
feat: add prefixes to sharpconfig
1 parent 8529b2c commit f09d5a0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
using System.Collections.Generic;
2+
13
namespace SharpWebserver.Config;
24

35
public class SharpConfig
46
{
7+
public List<string> Prefixes { get; set; } = [
8+
"http://*",
9+
];
510
public bool SafeMode { get; set; } = false;
611
public int PortNumber { get; set; } = 80;
712
}

0 commit comments

Comments
 (0)