first commit

This commit is contained in:
2025-06-19 17:12:48 +08:00
commit 1edbd79e4c
506 changed files with 52853 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
type Request {
Name string `path:"name,options=you|me"`
}
type Response {
Message string `json:"message"`
}
service {{.name}}-api {
@handler {{.handler}}Handler
get /from/:name(Request) returns (Response)
}