diff options
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() + |