Add a __main__.py file

Add a `__main__.py` file, so that BAT can be run with
`python3 -m blender_asset_tracer`. This makes it easier to start BAt in
a debugger.
This commit is contained in:
Sybren A. Stüvel 2025-07-11 15:42:39 +02:00
parent 16c208bc8e
commit 6c42d06f05

View File

@ -0,0 +1,3 @@
from blender_asset_tracer import cli
cli.cli_main()