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