e60489715a
Client endpoint - GET & POST implemented
12 lines
182 B
Python
12 lines
182 B
Python
"""
|
|
API Home
|
|
"""
|
|
from fastapi import APIRouter
|
|
from app.core.config import settings
|
|
|
|
|
|
api_router = APIRouter()
|
|
|
|
#if settings.environment == "local":
|
|
# api_router.include_router()
|