shell_py/__main__.py

7 lines
247 B
Python
Raw Normal View History

2019-02-08 13:40:21 -05:00
from .shell import *
print("""NOTE: this is a base shell with only the default commands.\n
If you want to actually do things with a shell, import the shell package\n
and instantiate a shell.Shell or derive a class from it.""")
s = Shell()
s.run()