summaryrefslogtreecommitdiff
path: root/src/debug.py
blob: f075e25597eae1c0934ae01d7f64fa26447e749a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()