6 lines
121 B
Python
6 lines
121 B
Python
|
from fastapi import APIRouter, Depends, HTTPException, status
|
||
|
|
||
|
router = APIRouter(prefix="/message", tags=["message"])
|
||
|
|
||
|
|