summaryrefslogtreecommitdiff
path: root/src/sliceitoff/main.py
blob: 58cc6178cf3f820bca3a6359627dda66b6cd4ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
""" main.py """
from runpy import run_path
from pathlib import Path

def main():
    """ Let's start the app as current path being base """
    my_path = Path(__file__).parent.resolve()
    run_path(f"{my_path}", run_name="sliceitoff")

if __name__ == "__main__":
    main()