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/test.py

13 lines
322 B
Python

from typing import List
from .. import Module
class TestMod(Module):
PREFIX = "test"
NAME = "test"
async def command(self, cmd: List[str]):
if cmd[0] == "test":
channel = self._client.get_channel(self._config["channel_id"])
await channel.send("psycho frank is in the house")