first and real commit
This commit is contained in:
9
api/routes/root.py
Normal file
9
api/routes/root.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get('/', tags=["root"])
|
||||
def root():
|
||||
return {
|
||||
"status": "running"
|
||||
}
|
||||
Reference in New Issue
Block a user