#!/usr/bin/python3 # -*- coding: utf-8 -*- # Author: İsmail BAŞARAN from base.scheduler.custom.custom_scheduler import CustomScheduler class SchedulerFactory(): def get_intstance(self): return CustomScheduler() get_intstance = staticmethod(get_intstance)