add backend source code
This commit is contained in:
17
backend/app/api/v1/__init__.py
Normal file
17
backend/app/api/v1/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from fastapi import APIRouter
|
||||
from app.api.v1 import departments, staff, indicators, assessments, salary, stats, auth, finance, performance_plans, menus, templates, surveys
|
||||
|
||||
api_router = APIRouter()
|
||||
|
||||
api_router.include_router(auth.router)
|
||||
api_router.include_router(departments.router)
|
||||
api_router.include_router(staff.router)
|
||||
api_router.include_router(indicators.router)
|
||||
api_router.include_router(assessments.router)
|
||||
api_router.include_router(salary.router)
|
||||
api_router.include_router(stats.router)
|
||||
api_router.include_router(finance.router)
|
||||
api_router.include_router(performance_plans.router)
|
||||
api_router.include_router(menus.router)
|
||||
api_router.include_router(templates.router)
|
||||
api_router.include_router(surveys.router)
|
||||
Reference in New Issue
Block a user