Files
SPT-Server-Build/Core/Callbacks/HttpCallbacks.cs
T
2025-01-07 10:42:52 +00:00

19 lines
322 B
C#

namespace Core.Callbacks;
public class HttpCallbacks
{
public async Task OnLoad()
{
throw new NotImplementedException();
}
public string GetRoute()
{
throw new NotImplementedException();
}
public string GetImage()
{
throw new NotImplementedException();
}
}