Files
SPT-Server-Build/Core/Callbacks/PresetCallbacks.cs
T
2025-01-08 13:41:25 +00:00

20 lines
304 B
C#

using Core.DI;
namespace Core.Callbacks;
public class PresetCallbacks : OnLoad
{
public PresetCallbacks()
{
}
public async Task OnLoad()
{
throw new NotImplementedException();
}
public string GetRoute()
{
throw new NotImplementedException();
}
}