summaryrefslogtreecommitdiff
path: root/src/xbackup
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2021-09-03 11:04:48 +0200
committerxengineering <me@xengineering.eu>2021-09-03 11:04:48 +0200
commitf42af91a19d16f36d2a7ea2e8622252cf7d211b0 (patch)
tree2731faca506f4f9f71eb36434c4b90c498092a23 /src/xbackup
parent2f74c0f91da0a5aefce7715213935eee0069c738 (diff)
downloadxbackup-f42af91a19d16f36d2a7ea2e8622252cf7d211b0.tar
xbackup-f42af91a19d16f36d2a7ea2e8622252cf7d211b0.tar.zst
xbackup-f42af91a19d16f36d2a7ea2e8622252cf7d211b0.zip
Restructure Code
Diffstat (limited to 'src/xbackup')
-rw-r--r--src/xbackup/script.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/xbackup/script.py b/src/xbackup/script.py
new file mode 100644
index 0000000..198b6b3
--- /dev/null
+++ b/src/xbackup/script.py
@@ -0,0 +1,15 @@
+#!/usr/bin/python3
+# vim: shiftwidth=4 tabstop=4 expandtab
+
+
+"""Module for the Script Functionality of xbackup"""
+
+
+import argparse
+
+
+def run():
+ """runs xbackup script functionality"""
+
+ parser = argparse.ArgumentParser()
+ parser.parse_args()