brestok's picture
init
50553ea
raw
history blame contribute delete
133 Bytes
from fastapi.routing import APIRouter
message_router = APIRouter(
prefix="/api/message", tags=["message"]
)
from . import views