Ahenk/opt/ahenk/base/scheduler/scheduler_factory.py

11 lines
335 B
Python
Raw Normal View History

2016-04-01 14:11:48 +03:00
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
2016-04-05 17:56:54 +03:00
from base.scheduler.custom.custom_scheduler import CustomScheduler
2016-04-01 14:11:48 +03:00
class SchedulerFactory():
def get_intstance(self):
2016-04-05 17:28:22 +03:00
return CustomScheduler()
get_intstance = staticmethod(get_intstance)