We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 407a416 commit b9822e9Copy full SHA for b9822e9
src/thread/__main__.py
@@ -0,0 +1,6 @@
1
+
2
+# To make CLI accessible with py/python/python3 -m thread ...
3
+from .cli import app
4
5
+if __name__ == '__main__':
6
+ app(prog_name = 'thread')
src/thread/cli/__init__.py
@@ -0,0 +1,11 @@
+"""
+Import and config CLI commands
+__version__ = '0.1.2'
+from ..config import logging, ColorLogger
7
+logging.setLoggerClass(ColorLogger)
8
9
10
+# Import #
11
+from .base import cli_base as app
0 commit comments