11 lines
211 B
Python
11 lines
211 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/", tags=["Root"])
|
|
def root():
|
|
"""
|
|
Root API endpoint.
|
|
"""
|
|
return {"message": "Welcome to the General Communication Service API"} |