diff options
author | xengineering <me@xengineering.eu> | 2021-09-03 10:50:26 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-09-03 10:50:26 +0200 |
commit | 2f74c0f91da0a5aefce7715213935eee0069c738 (patch) | |
tree | 2e610237b80e09b9164962336d22fc53519b7157 /src/scripts | |
parent | fc1c44f7368743809994dcfa1e84443bbde7e083 (diff) | |
download | xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.tar xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.tar.zst xbackup-2f74c0f91da0a5aefce7715213935eee0069c738.zip |
Add Executable
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() |