mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
10 lines
156 B
Python
10 lines
156 B
Python
|
|
|
|
class Task(object):
|
|
name = None
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run(self, info):
|
|
print 'Running ' + self.__module__ + "." + self.__class__.__name__
|