mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-19 12:37:30 +02:00
14 lines
345 B
Python
14 lines
345 B
Python
from fastapi import APIRouter, HTTPException, status
|
|
from fastapi.params import Depends
|
|
|
|
from app.auth.auth_bearer import JWTBearer
|
|
|
|
router = APIRouter(
|
|
prefix="/setup",
|
|
tags=["Setup"]
|
|
)
|
|
|
|
|
|
@router.get("/status", dependencies=[Depends(JWTBearer())])
|
|
def get_status():
|
|
return HTTPException(status_code=status.HTTP_501_NOT_IMPLEMENTED)
|