mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 04:22:28 +03:00
19 lines
310 B
Python
19 lines
310 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
|
||
|
|
||
|
class ScheduleDB(object):
|
||
|
|
||
|
def save(self):
|
||
|
pass
|
||
|
|
||
|
def delete(self):
|
||
|
pass
|
||
|
|
||
|
def load(self):
|
||
|
pass
|
||
|
|
||
|
def check_table_exists(self):
|
||
|
pass
|