14 lines
237 B
Python
14 lines
237 B
Python
from halfapi.lib import acl
|
|
ACLS = {
|
|
'GET' : [{'acl':acl.public}]
|
|
}
|
|
def get():
|
|
"""
|
|
description:
|
|
Not implemented
|
|
responses:
|
|
200:
|
|
description: test response
|
|
"""
|
|
raise NotImplementedError
|