feat: create structure for the project and first problem

This commit is contained in:
AlanSilvaaa
2026-05-26 00:30:38 -04:00
parent 6a7261e59c
commit 494ff27c06
20 changed files with 633 additions and 3 deletions

7
app/routers/math.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import APIRouter
from app.routers import grade_1
router = APIRouter(prefix="/math")
router.include_router(grade_1.router)