Spaces:
Sleeping
Sleeping
File size: 128 Bytes
469eae6 |
1 2 3 4 5 6 |
from typing import Literal
def my_custom_validate(token: str) -> Literal[True]:
raise Exception("Custom validate failed")
|