mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-12 05:08:28 +03:00
7 lines
150 B
Python
7 lines
150 B
Python
# used as validators for config values.
|
|
|
|
def example_validator(value):
|
|
return "example" in value
|
|
|
|
def positive_number(value):
|
|
return value > 0 |