13 lines
247 B
Python
13 lines
247 B
Python
"""
|
|
Run tasks based on webhooks configured in Gitea.
|
|
|
|
Command-line optinos:
|
|
--debug, -d Send more detailed log output to console.
|
|
"""
|
|
|
|
from pathlib import Path
|
|
from os import X_OK
|
|
|
|
|
|
if __name__ == '__main__':
|
|
assert Path(__file__).exists() |