5 lines
171 B
Python
5 lines
171 B
Python
from .handler import _post, _get
|
|
|
|
def TRUTH(value): return _post("truth", {"value": value}).get("truth")
|
|
def BOOLIFY(value: str): return _get("boolify", {"value": value})
|