10 lines
No EOL
168 B
Python
10 lines
No EOL
168 B
Python
from lib.parsers.parser import Parser
|
|
|
|
|
|
class ShellParser(Parser):
|
|
def __init__(self, **kwargs):
|
|
pass
|
|
|
|
|
|
def create(kwargs):
|
|
return ShellParser(**kwargs) |