summaryrefslogtreecommitdiff
path: root/src/xbackup
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2021-09-03 10:50:26 +0200
committerxengineering <me@xengineering.eu>2021-09-03 10:50:26 +0200
commit2f74c0f91da0a5aefce7715213935eee0069c738 (patch)
tree2e610237b80e09b9164962336d22fc53519b7157 /src/xbackup
parentfc1c44f7368743809994dcfa1e84443bbde7e083 (diff)
downloadxbackup-2f74c0f91da0a5aefce7715213935eee0069c738.tar
xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.tar.zst
xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.zip
Add Executable
Diffstat (limited to 'src/xbackup')
-rw-r--r--src/xbackup/__main__.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/xbackup/__main__.py b/src/xbackup/__main__.py
deleted file mode 100644
index 1646a5f..0000000
--- a/src/xbackup/__main__.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# vim: shiftwidth=4 tabstop=4 expandtab
-
-
-"""Main Executable of xbackup
-
-Have a look at https://gitea.xengineering.eu/xengineering/xbackup for details.
-"""
-
-
-import argparse
-
-
-def main():
- """Main Function of this Script"""
-
- parser = argparse.ArgumentParser()
- parser.parse_args()
-
-
-if __name__ == "__main__":
- main()