diff --git a/code/main.py b/code/main.py new file mode 100644 index 0000000..c4ba96d --- /dev/null +++ b/code/main.py @@ -0,0 +1,13 @@ +""" +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() \ No newline at end of file