linspector-old/lib/parsers/shell.py

10 lines
158 B
Python
Raw Normal View History

2013-06-19 23:09:57 +02:00
from lib.parsers.parser import Parser
class ShellParser(Parser):
def __init__(self):
2013-06-19 04:47:28 +02:00
pass
def create(kwargs):
return ShellParser(**kwargs)