2020-10-07 09:52:23 +02:00
|
|
|
from starlette.responses import PlainTextResponse
|
2021-06-17 18:52:18 +02:00
|
|
|
from halfapi.lib import acl
|
2020-10-07 09:52:23 +02:00
|
|
|
|
2021-06-16 15:34:25 +02:00
|
|
|
ACLS = {
|
|
|
|
'GET': [{'acl':acl.public}]
|
2020-09-22 12:57:36 +02:00
|
|
|
}
|
2020-10-07 09:52:23 +02:00
|
|
|
|
|
|
|
async def get(request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: dummy abc.alphabet route
|
|
|
|
"""
|
|
|
|
return PlainTextResponse('True')
|