9 lines
154 B
Python
9 lines
154 B
Python
|
|
from fastapi.routing import apirouter
|
||
|
|
|
||
|
|
router = apirouter()
|
||
|
|
|
||
|
|
@router.get("/companies")
|
||
|
|
def read_companies():
|
||
|
|
return {"message": "list of companies"}
|
||
|
|
|