From ecad4df4ad3b51e77042aa45a446525ae61417f6 Mon Sep 17 00:00:00 2001 From: Alessandro Proto Date: Fri, 13 Jan 2023 23:48:03 +0100 Subject: [PATCH] Config template for HTTP --- Capy64/Configuration/HTTP.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Capy64/Configuration/HTTP.cs 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; } +}