diff options
author | xengineering <me@xengineering.eu> | 2021-09-04 08:58:12 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-09-04 08:58:12 +0200 |
commit | 96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe (patch) | |
tree | 047410da8e628d38fb23a9651365c9d02b28411d /src/debug.py | |
parent | 40f77b0a0300011f89b09d340463426ce3f45d4c (diff) | |
download | xbackup-96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe.tar xbackup-96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe.tar.zst xbackup-96200dfe5fd92e62936f2aa6fc1ec57afc1c5bbe.zip |
Add debug.py for Development
Diffstat (limited to 'src/debug.py')
-rw-r--r-- | src/debug.py | 19 |
1 files changed, 19 insertions, 0 deletions
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() + |