halfapi/tests/dummy_domain/routers/config/__init__.py
2021-11-16 17:45:40 +01:00

11 lines
188 B
Python

from halfapi.lib import acl
from halfapi.logging import logger
ACLS = {
'GET' : [{'acl':acl.public}]
}
def get(halfapi):
logger.error('%s', halfapi)
return halfapi['config']