mirror of
1
0
Fork 0

Added support to run with python -m

This commit is contained in:
tpansin 2020-07-23 08:44:06 -07:00
parent c5e709d433
commit 322661dde1
1 changed files with 4 additions and 0 deletions

4
dotbot/__main__.py Normal file
View File

@ -0,0 +1,4 @@
from .cli import main
if __name__ == "__main__":
main()