Merge pull request #416 from jojje/feat/runnable_module

Make module runnable with python -m lama_cleaner
This commit is contained in:
Qing 2024-01-08 22:39:30 +08:00 committed by GitHub
commit 044d426616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
lama_cleaner/__main__.py Normal file
View File

@ -0,0 +1,4 @@
from lama_cleaner import entry_point
if __name__ == "__main__":
entry_point()