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
309 B
Python

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