You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
syntax = "v1"type BaseTree {
id int `json:"id"`
}
type Tree {
base BaseTree `json:"base"`
}
@server (
prefix: /api/v1
group: test
)
service demo-api {
@handler Tree
get /test/tree () returns ([]Tree)
}
期望 BaseTree 结构体也在 test.types.go 中
The text was updated successfully, but these errors were encountered:
api 文件如下:
期望 BaseTree 结构体也在 test.types.go 中
The text was updated successfully, but these errors were encountered: