11 lines
170 B
Python
11 lines
170 B
Python
from halfapi.lib import acl
|
|
ACLS = {
|
|
'GET' : [{'acl':acl.public}]
|
|
}
|
|
def get():
|
|
"""
|
|
description:
|
|
Not implemented
|
|
"""
|
|
raise NotImplementedError
|