7 lines
153 B
Python
Executable File
7 lines
153 B
Python
Executable File
class XICValidationError(Exception):
|
|
pass
|
|
|
|
def validate_xic(path: str):
|
|
print(f"validate_xic called with path={path}")
|
|
return {"path": path}
|