diff options
author | xengineering <me@xengineering.eu> | 2022-09-23 20:06:21 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-09-23 20:10:06 +0200 |
commit | 4a439a96abb04537152c99d170e84e79ae941ef1 (patch) | |
tree | d8636bab4c918bc71ea37d825139593f44c08ade /main.py | |
parent | ae91c75df75678d504fd3d1fd4fdf416df9296dd (diff) | |
download | xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.tar xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.tar.zst xbackup-4a439a96abb04537152c99d170e84e79ae941ef1.zip |
Refactor folder structure
This removes the `install` target. Should be re-introduced later.
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +#!/usr/bin/python3 +# vim: shiftwidth=4 tabstop=4 expandtab + + +"""Main Executable of xbackup + +Have a look at https://cgit.xengineering.eu/xbackup for details. +""" + + +from xbackup import script + + +def main(): + """Main Function of this Script""" + + script.run() + + +if __name__ == "__main__": + main() |