diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2022-03-22 01:31:27 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2022-03-22 01:31:27 +0100 |
| commit | cc4ba3b063f14943579ffbfe416828590f70ae0a (patch) | |
| tree | af2127920fb57603206ca670beb63b5d58650fb8 /src_py/hatter/__main__.py | |
| parent | c594b1fca854a7b9fb73d854a9830143cd1032fc (diff) | |
WIP major rewrite
Diffstat (limited to 'src_py/hatter/__main__.py')
| -rw-r--r-- | src_py/hatter/__main__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src_py/hatter/__main__.py b/src_py/hatter/__main__.py new file mode 100644 index 0000000..065fe88 --- /dev/null +++ b/src_py/hatter/__main__.py @@ -0,0 +1,8 @@ +import sys + +from hatter.main import main + + +if __name__ == '__main__': + sys.argv[0] = 'hatter' + sys.exit(main()) |
