shell_py/__main__.py
2019-02-08 13:40:21 -05:00

6 lines
247 B
Python

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()