summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100755
index 0000000..569202e
--- /dev/null
+++ b/main.py
@@ -0,0 +1,21 @@
+#!/usr/bin/python3
+# vim: shiftwidth=4 tabstop=4 expandtab
+
+
+"""Main Executable of xbackup
+
+Have a look at https://cgit.xengineering.eu/xbackup for details.
+"""
+
+
+from xbackup import script
+
+
+def main():
+ """Main Function of this Script"""
+
+ script.run()
+
+
+if __name__ == "__main__":
+ main()