20 lines
298 B
C#
20 lines
298 B
C#
using Core.DI;
|
|
|
|
namespace Core.Callbacks;
|
|
|
|
public class ModCallbacks : OnLoad
|
|
{
|
|
public ModCallbacks()
|
|
{
|
|
}
|
|
|
|
public async Task OnLoad()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string GetRoute()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |