linspector-old/lib/parsers/shell.py
2013-06-19 23:09:57 +02:00

10 lines
No EOL
158 B
Python

from lib.parsers.parser import Parser
class ShellParser(Parser):
def __init__(self):
pass
def create(kwargs):
return ShellParser(**kwargs)