7 lines
113 B
Python
7 lines
113 B
Python
from halfapi.lib import acl
|
|
ACLS = {
|
|
'GET' : [{'acl':acl.public}]
|
|
}
|
|
def get():
|
|
raise NotImplementedError
|