26 lines
400 B
C#
26 lines
400 B
C#
using Core.DI;
|
|
|
|
namespace Core.Callbacks;
|
|
|
|
public class HttpCallbacks : OnLoad
|
|
{
|
|
public HttpCallbacks()
|
|
{
|
|
|
|
}
|
|
|
|
public async Task OnLoad()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string GetRoute()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string GetImage()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |