Ahenk/opt/ahenk/base/plugin/plugin_manager_factory.py

11 lines
322 B
Python
Raw Normal View History

2016-04-06 17:40:25 +03:00
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
from base.plugin.plugin_manager import PluginManager
class PluginManagerFactory(object):
def get_instance():
return PluginManager()
get_instance = staticmethod(get_instance)