diff --git a/Netch/Controllers/Server/HTTPController.cs b/Netch/Controllers/Server/HTTPController.cs new file mode 100644 index 00000000..9cb46a09 --- /dev/null +++ b/Netch/Controllers/Server/HTTPController.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Netch.Controllers.Server +{ + public class HTTPController : Interface.IController + { + public bool Create(Models.Server.Server s, Models.Mode.Mode m) + { + throw new NotImplementedException(); + } + + public bool Delete() + { + throw new NotImplementedException(); + } + } +}