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

15 lines
230 B
Python

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