Spaces:
Sleeping
Sleeping
from typing import Literal | |
def my_custom_validate(token: str) -> Literal[True]: | |
raise Exception("Custom validate failed") | |
from typing import Literal | |
def my_custom_validate(token: str) -> Literal[True]: | |
raise Exception("Custom validate failed") | |