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