forked from erp-dev/erp
10 lines
145 B
Python
10 lines
145 B
Python
from ninja import NinjaAPI
|
|
|
|
|
|
router = NinjaAPI()
|
|
|
|
|
|
@router.get('/')
|
|
async def index(request):
|
|
return {'message': 'Welcome to the Stock API'}
|