Kevin Wan
Kevin Wan
Thank you for raising this question. We actually did consider using OpenAPI during the development of go-zero, but ultimately decided against it for several important reasons: **1. Verbosity and Complexity**...
grpc-gateway or go-zero gateway?
Thanks for the feature request! While I understand the appeal of using `protoc-gen-go-json`, we've decided not to add explicit support for `--go-json_out` in goctl at this time. Here's our reasoning:...
Sure, I was planned to use the official sdk. Glad to see the v1 is out. I'll migrate to it. Thanks for your information.
I've started working on migrating to the official MCP Go SDK v1.0.0. Here's my approach: ## Migration Strategy ### 1. Dependencies Added ✅ - `github.com/modelcontextprotocol/[email protected]` - `github.com/google/jsonschema-go` (for schema generation)...
Because the official sdk is using go 1.23, we need to postpone the integration later when we upgrade go version to 1.23 in go-zero.
For the first question, would you please describe what's the current generated content and what's your expected content? For your second question about serving Swagger UI - that's not a...
Which parameter you want to configure? It's working pretty good with default parameters. Did you encounter any problem?
Yes, we're working on it. There is a PR for this implementation. But we need more test to guarantee its quality. I think it's going to be released in months.
```go type MySQLNodeConf struct { Alias string json:",optional" DSN string json:",optional" Type string json:",optional" // master or slave MaxOpenConns int json:",optional" MaxIdleConns int json:",optional" ConnMaxIdleTime time.Duration json:",optional" ConnMaxLifetime time.Duration json:",optional"...