mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 18:46:43 +00:00
Config template for HTTP
This commit is contained in:
parent
5e0183cc1c
commit
ecad4df4ad
1 changed files with 14 additions and 0 deletions
14
Capy64/Configuration/HTTP.cs
Normal file
14
Capy64/Configuration/HTTP.cs
Normal file
|
@ -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; }
|
||||||
|
}
|
Loading…
Reference in a new issue