summaryrefslogtreecommitdiff
path: root/src/debug.py
blob: 1deaf455f95d65fa04b4b4db4f68387f2b3c6150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python3
# vim: shiftwidth=4 softtabstop=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()