mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
10 lines
250 B
Text
10 lines
250 B
Text
from typing import *
|
|
import royalnet.commands as rc
|
|
|
|
|
|
#set($CAPITALIZED_NAME = $NAME.substring(0,1).toUpperCase() + $NAME.substring(1))
|
|
class ${CAPITALIZED_NAME}Event(Event):
|
|
name = "$NAME"
|
|
|
|
async def run(self, **kwargs) -> dict:
|
|
...
|