This repository has been archived on 2021-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
frank/frank/module.py
2020-08-08 09:29:32 +02:00

16 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