changed location of callbacks, fixed namespace

This commit is contained in:
CWX
2025-01-06 18:30:27 +00:00
parent 256f820f17
commit 10408f9a05
36 changed files with 72 additions and 72 deletions
+24
View File
@@ -0,0 +1,24 @@
namespace Core.Callbacks;
public class ModCallbacks
{
public void Load()
{
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)
{
throw new NotImplementedException();
}
}