Skip to content

Commit

Permalink
Add cli.py and gui.py as shortcuts to their counterparts
Browse files Browse the repository at this point in the history
  • Loading branch information
mikakoi committed Apr 17, 2018
1 parent 31f4f4f commit b913fb9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env python3

from dexbot import cli

if __name__ == '__main__':
cli.main()
6 changes: 6 additions & 0 deletions gui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env python3

from dexbot import gui

if __name__ == '__main__':
gui.main()

0 comments on commit b913fb9

Please sign in to comment.