summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2021-09-03 09:49:23 +0200
committerxengineering <me@xengineering.eu>2021-09-03 09:49:23 +0200
commitef5d76d3feb0fbc147ec84c33486438295d9bbcf (patch)
tree94e1230a1fe98d6fe4cb1990c40e5437c75fc677
parentd0f7690872522ad1d132767a6032da19e1b73a10 (diff)
downloadxbackup-ef5d76d3feb0fbc147ec84c33486438295d9bbcf.tar
xbackup-ef5d76d3feb0fbc147ec84c33486438295d9bbcf.tar.zst
xbackup-ef5d76d3feb0fbc147ec84c33486438295d9bbcf.zip
Add summy Package and Executable
-rw-r--r--.gitignore1
-rw-r--r--src/xbackup/__init__.py0
-rw-r--r--src/xbackup/__main__.py21
3 files changed, 22 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..eeb8a6e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+**/__pycache__
diff --git a/src/xbackup/__init__.py b/src/xbackup/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/xbackup/__init__.py
diff --git a/src/xbackup/__main__.py b/src/xbackup/__main__.py
new file mode 100644
index 0000000..1646a5f
--- /dev/null
+++ b/src/xbackup/__main__.py
@@ -0,0 +1,21 @@
+# 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()