ALM-2 / backend /api /__init__.py
ACA050's picture
Upload 520 files
2ed8996 verified
"""
API package for AegisLM SaaS Backend.
API routes and dependencies.
"""
from .routes import auth_routes, evaluation_routes, results_routes, benchmark_routes
from .dependencies import auth
__all__ = [
"auth_routes",
"evaluation_routes",
"results_routes",
"benchmark_routes",
"auth"
]