This repository has been archived on 2021-03-28. You can view files and clone it, but cannot push or open issues/pull-requests.
frank/frank/module.py

17 lines
303 B
Python

from typing import List, Dict
class Module:
PREFIX = None
NAME = None
def __init__(self, client: "Frank", config: Dict = None):
self._client = client
self._config = config
async def start(self):
pass
async def command(self, cmd: List[str]):
pass