diff options
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/xbackup | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/scripts/xbackup b/src/scripts/xbackup new file mode 100644 index 0000000..0155203 --- /dev/null +++ b/src/scripts/xbackup @@ -0,0 +1,24 @@ +#!/usr/bin/python3 +# vim: shiftwidth=4 tabstop=4 expandtab + + +"""Main Executable of xbackup + +Have a look at https://gitea.xengineering.eu/xengineering/xbackup for details. +""" + + +import argparse + +import xbackup + + +def main(): + """Main Function of this Script""" + + parser = argparse.ArgumentParser() + parser.parse_args() + + +if __name__ == "__main__": + main() |