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