mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
Add HTTP Controller
This commit is contained in:
21
Netch/Controllers/Server/HTTPController.cs
Normal file
21
Netch/Controllers/Server/HTTPController.cs
Normal file
@@ -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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user