AW: theCure
This commit is contained in:
12
backend/app/routes/admin.py
Normal file
12
backend/app/routes/admin.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
# Stub endpoints for Admin (4GL) APIs — expand later.
|
||||
@router.get("/apps")
|
||||
async def list_apps():
|
||||
return []
|
||||
|
||||
@router.post("/apps")
|
||||
async def create_app(payload: dict):
|
||||
return payload
|
||||
Reference in New Issue
Block a user