diff --git a/Capy64/Configuration/HTTP.cs b/Capy64/Configuration/HTTP.cs new file mode 100644 index 0000000..089ff11 --- /dev/null +++ b/Capy64/Configuration/HTTP.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Capy64.Configuration; + +class HTTP +{ + public bool Enable { get; set; } = true; + public string[] Blacklist { get; set; } + public WebSockets WebSockets { get; set; } +}