From 034e40cfbe92257cafd72dab46045287b0044173 Mon Sep 17 00:00:00 2001 From: simplypower-bbj Date: Sun, 25 Jun 2023 20:34:30 +0200 Subject: [PATCH] simple check if file runs --- code/main.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 code/main.py 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