12 lines
226 B
Python
12 lines
226 B
Python
|
#!/bin/python
|
||
|
|
||
|
class command():
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
def run(self, environment):
|
||
|
return environment
|
||
|
def setCallback(self, callback):
|
||
|
pass
|
||
|
def shutdown(self):
|
||
|
pass
|