1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/pycharm_templates/apistar.vm

26 lines
444 B
Text
Raw Normal View History

2020-05-06 23:20:46 +00:00
import royalnet.constellation.api as rca
import royalnet.utils as ru
#set($CAPITALIZED_NAME = $NAME.substring(0,1).toUpperCase() + $NAME.substring(1))
class ${CAPITALIZED_NAME}Star(rca.ApiStar):
summary = "$SUMMARY"
description = ""
methods = ["GET"]
path = "$PATH"
requires_auth = False
parameters = {}
tags = ["$TAG"]
async def api(self, data: rca.ApiData) -> ru.JSON:
...
return {}