mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 19:22:17 +03:00
16 lines
392 B
Python
16 lines
392 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
|
|
|
class Task(object):
|
|
"""docstring for Task"""
|
|
def __init__(self,message):
|
|
super(Task, self).__init__()
|
|
|
|
def getPluginId(self):
|
|
# Not implemented yet
|
|
pass
|
|
|
|
def getcommandId(self):
|
|
# Not implemented yet
|
|
pass
|