halfapi/tests/dummy_domain/routers/abc/alphabet/__init__.py
2021-06-16 15:34:25 +02:00

15 lines
290 B
Python

from starlette.responses import PlainTextResponse
from dummy_domain import acl
ACLS = {
'GET': [{'acl':acl.public}]
}
async def get(request, *args, **kwargs):
"""
responses:
200:
description: dummy abc.alphabet route
"""
return PlainTextResponse('True')