2021-11-29 08:37:52 +01:00
|
|
|
from halfapi.lib import acl
|
|
|
|
from halfapi.lib.acl import public
|
2021-11-29 06:09:18 +01:00
|
|
|
from random import randint
|
|
|
|
|
|
|
|
|
2021-11-29 08:37:52 +01:00
|
|
|
def random():
|
|
|
|
return randint(0,1) == 1
|
2021-11-29 06:09:18 +01:00
|
|
|
|
2021-11-29 08:37:52 +01:00
|
|
|
def denied():
|
|
|
|
return False
|
2021-11-29 06:09:18 +01:00
|
|
|
|