halfapi/tests/dummy_domain/routers/config/__init__.py

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']