blob: 3ffba0a5779b738be2f0b94f6a675e6332323520 [file] [log] [blame]
import cmd
class CmdInterpretor(cmd.Cmd):
prompt = 'stratos>'
def do_add(self, line):
print 'command line intepretor working'
def do_EOF(self, line):
return True