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/modules/testmod.py

11 lines
260 B
Python

from typing import List
from .. import Module
class TestMod(Module):
PREFIX = "test"
async def command(self, cmd: List[str]):
if cmd[0] == "test":
await self._client.get_channel(740301700606197918).send("this is frank speaking")