vue-molten-app/backend/runcible/schema.py

15 lines
285 B
Python

from molten import schema, field
@schema
class Link:
href: str
@schema
class APIResponse:
status: int = field(description="An HTTP status code")
message: str = field(
description="A user presentable message in response to the request provided to the API"
)