1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/examplepack/events/example.py
2019-12-25 01:47:10 +01:00

10 lines
210 B
Python

from typing import *
from royalnet.commands import *
from royalnet.utils import *
class ExampleEvent(Event):
name = "example"
async def run(self, **kwargs) -> dict:
return {"hello": "world"}