linspector-old/lib/parsers/shell.py

10 lines
168 B
Python
Raw Normal View History

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