summaryrefslogtreecommitdiff
path: root/src/scripts
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/scripts
parentfc1c44f7368743809994dcfa1e84443bbde7e083 (diff)
downloadxbackup-2f74c0f91da0a5aefce7715213935eee0069c738.tar
xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.tar.zst
xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.zip
Add Executable
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/xbackup24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/scripts/xbackup b/src/scripts/xbackup
new file mode 100644
index 0000000..0155203
--- /dev/null
+++ b/src/scripts/xbackup
@@ -0,0 +1,24 @@
+#!/usr/bin/python3
+# vim: shiftwidth=4 tabstop=4 expandtab
+
+
+"""Main Executable of xbackup
+
+Have a look at https://gitea.xengineering.eu/xengineering/xbackup for details.
+"""
+
+
+import argparse
+
+import xbackup
+
+
+def main():
+ """Main Function of this Script"""
+
+ parser = argparse.ArgumentParser()
+ parser.parse_args()
+
+
+if __name__ == "__main__":
+ main()