Skip to content

Commit

Permalink
Merge pull request #37 from python-thread/dev
Browse files Browse the repository at this point in the history
CLI migration
  • Loading branch information
caffeine-addictt committed Feb 4, 2024
2 parents a8b3a87 + f870f0e commit 94d7066
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 444 deletions.
9 changes: 9 additions & 0 deletions src/thread/cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

try:
import importlib
thread_cli = importlib.import_module('thread-cli')
app = thread_cli.app
except ModuleNotFoundError:
def app(prog_name = 'thread'):
print('thread-cli not found, please install it with `pip install thread-cli`')
exit(1)
18 changes: 0 additions & 18 deletions src/thread/cli/__init__.py

This file was deleted.

117 changes: 0 additions & 117 deletions src/thread/cli/base.py

This file was deleted.

229 changes: 0 additions & 229 deletions src/thread/cli/process.py

This file was deleted.

Loading

0 comments on commit 94d7066

Please sign in to comment.