Rename project to EpinelPS

This commit is contained in:
Mikhail
2024-07-30 13:04:25 -04:00
parent 0990f46266
commit 239c4f293f
204 changed files with 587 additions and 700 deletions

View File

@@ -0,0 +1,13 @@
namespace EpinelPS.IntlServer
{
public class CodeStatusEndpoint : IntlMsgHandler
{
public override bool RequiresAuth => false;
protected override async Task HandleAsync()
{
// pretend that any code is valid
await WriteJsonStringAsync("{\"expire_time\":759,\"msg\":\"Success\",\"ret\":0,\"seq\":\"" + Seq + "\"}");
}
}
}