1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00
royalnet/pycharm_templates/event.vm
2020-02-11 23:03:14 +01:00

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:
...