diff options
author | Marvin Borner | 2023-08-09 21:03:10 +0200 |
---|---|---|
committer | Marvin Borner | 2023-08-09 21:03:10 +0200 |
commit | c9136fbba5ac5bd394a9c164173b64e22a1b2950 (patch) | |
tree | 6f2891d460a4b096a680427498858ebc7b552276 /src | |
parent | 2ffd235de567d03a11cf431dd045bde639eefe92 (diff) |
Added basic CI
Diffstat (limited to 'src')
-rw-r--r-- | src/main.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..7f79cbb --- /dev/null +++ b/src/main.py @@ -0,0 +1,11 @@ +"""main module for main things""" + + +def main() -> int: + """main function for mainier things""" + print("hello world") + return 0 + + +if __name__ == "__main__": + main() |