mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
13 lines
331 B
Text
13 lines
331 B
Text
import royalnet
|
|
from royalnet.commands import *
|
|
|
|
#set($CAPITALIZED_NAME = $NAME.substring(0,1).toUpperCase() + $NAME.substring(1))
|
|
class ${CAPITALIZED_NAME}Command(Command):
|
|
name: str = "$NAME"
|
|
|
|
description: str = ""
|
|
|
|
syntax: str = ""
|
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
|
...
|