(init): Keys and Prefix Management

This commit is contained in:
2026-06-21 23:56:50 -04:00
commit 80c747226f
50 changed files with 4631 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from fastapi import FastAPI
from system.auth import auth_router
from system.prefixes import prefix_router
def imp_routers(app: FastAPI):
app.include_router(auth_router)
app.include_router(prefix_router)