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
Raw Normal View History

2020-08-08 09:19:09 +02:00
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