model and database initial classes

This commit is contained in:
İsmail Başaran 2016-03-02 11:33:48 +02:00
parent 3952cafc1a
commit 6951f0b238
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
class AhenkDao(object):
"""
Sqlite manager for ahenk
"""
def __init__(self):
super(AhenkDao, self).__init__()

View file

@ -0,0 +1,16 @@
#!/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