summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2021-09-04 08:58:12 +0200
committerxengineering <me@xengineering.eu>2021-09-04 08:58:12 +0200
commit96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe (patch)
tree047410da8e628d38fb23a9651365c9d02b28411d /src
parent40f77b0a0300011f89b09d340463426ce3f45d4c (diff)
downloadxbackup-96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe.tar
xbackup-96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe.tar.zst
xbackup-96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe.zip
Add debug.py for Development
Diffstat (limited to 'src')
-rw-r--r--src/.gitignore1
-rw-r--r--src/debug.py19
2 files changed, 20 insertions, 0 deletions
diff --git a/src/.gitignore b/src/.gitignore
new file mode 100644
index 0000000..378eac2
--- /dev/null
+++ b/src/.gitignore
@@ -0,0 +1 @@
+build
diff --git a/src/debug.py b/src/debug.py
new file mode 100644
index 0000000..f075e25
--- /dev/null
+++ b/src/debug.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python3
+# vim: shiftwidth=4 tabstop=4 expandtab
+
+
+"""A Debug Script for Development Purposes"""
+
+
+from xbackup import script
+
+
+def main():
+ """main function of this script"""
+
+ script.run()
+
+
+if __name__ == "__main__":
+ main()
+