mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-22 22:52:19 +00:00
9 lines
171 B
Python
9 lines
171 B
Python
|
import importlib
|
||
|
|
||
|
class Manager:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
@staticmethod
|
||
|
def get_plugin(name):
|
||
|
return importlib.import_module("lib.plugin.plugins." + name)
|