mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 00:52:16 +03:00
12 lines
332 B
Python
12 lines
332 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
|
||
|
from base.scheduler.custom.custom_scheduler import CustomScheduler
|
||
|
|
||
|
class SchedulerFactory():
|
||
|
|
||
|
def get_intstance():
|
||
|
return CustomScheduler()
|
||
|
|
||
|
get_intstance = staticmethod(get_intstance)
|