Files
netch/Netch/Controllers/Server/WireGuardController.cs
Connection Refused 2b4ee1719a [Netch] Format code
2021-10-04 21:36:12 +08:00

18 lines
386 B
C#

using System;
namespace Netch.Controllers.Server
{
public class WireGuardController : Interface.IController
{
public bool Create(Models.Server.Server s, Models.Mode.Mode m)
{
throw new NotImplementedException();
}
public bool Delete()
{
throw new NotImplementedException();
}
}
}