Merge remote-tracking branch 'origin/main'

This commit is contained in:
Cj
2025-01-07 06:05:00 -05:00
133 changed files with 190050 additions and 128238 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Core.DI;
public interface OnLoad
{
Task OnLoad();
string GetRoute();
}
+7
View File
@@ -0,0 +1,7 @@
namespace Core.DI;
public interface OnUpdate
{
Task<bool> OnUpdate(long timeSinceLastRun);
string GetRoute();
}