maubot/maubot/plugin_base.py

36 lines
1.2 KiB
Python
Raw Normal View History

2018-10-14 19:08:11 +00:00
# maubot - A plugin-based Matrix bot system.
# Copyright (C) 2018 Tulir Asokan
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from typing import TYPE_CHECKING
from abc import ABC
if TYPE_CHECKING:
2018-10-15 21:25:23 +00:00
from .client import MaubotMatrixClient
from .command_spec import CommandSpec
2018-10-14 19:08:11 +00:00
class Plugin(ABC):
2018-10-15 21:25:23 +00:00
def __init__(self, client: 'MaubotMatrixClient') -> None:
2018-10-14 19:08:11 +00:00
self.client = client
2018-10-15 21:25:23 +00:00
def set_command_spec(self, spec: 'CommandSpec') -> None:
pass
2018-10-14 19:08:11 +00:00
async def start(self) -> None:
pass
async def stop(self) -> None:
pass