mirror of
https://github.com/RockChinQ/QChatGPT.git
synced 2024-11-15 19:22:24 +08:00
26 lines
464 B
Python
26 lines
464 B
Python
from __future__ import annotations
|
|
from abc import ABCMeta
|
|
|
|
import typing
|
|
import abc
|
|
|
|
from ..core import app
|
|
from . import context, events
|
|
|
|
|
|
class PluginLoader(metaclass=abc.ABCMeta):
|
|
"""插件加载器抽象类"""
|
|
|
|
ap: app.Application
|
|
|
|
def __init__(self, ap: app.Application):
|
|
self.ap = ap
|
|
|
|
async def initialize(self):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
async def load_plugins(self) -> list[context.RuntimeContainer]:
|
|
pass
|
|
|