mirror of
https://github.com/ycd/manage-fastapi.git
synced 2021-11-08 01:34:39 +03:00
9 lines
162 B
Python
9 lines
162 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/")
|
|
def get_{{ cookiecutter.snake_name }}():
|
|
return "{{ cookiecutter.name }} app created!"
|