more callbacks

This commit is contained in:
CWX
2025-01-07 12:51:59 +00:00
parent 52d510cfcc
commit 0b4a231b71
38 changed files with 388 additions and 101 deletions
+11 -14
View File
@@ -1,23 +1,20 @@
namespace Core.Callbacks;
using Core.DI;
public class ModCallbacks
namespace Core.Callbacks;
public class ModCallbacks : OnLoad
{
public void Load()
public ModCallbacks()
{
}
public async Task OnLoad()
{
throw new NotImplementedException();
}
public void SendBundle(string sessionID, object req, object resp, object body)
{
throw new NotImplementedException();
}
public string GetBundles(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBundle(string url, object info, string sessionID)
public string GetRoute()
{
throw new NotImplementedException();
}