Taichi Sasaki
Taichi Sasaki
That's excellent🙂 I'll take a look at it later. Thank you for notifying me. @pedrohdz
@mackee I've been using this for several months and it's working good. Would you please review and merge this pull request (and opened others) ? I appreciate your help.
There are two issues: 1. Unneeded package name prefix for a qualified identifier (e.g. `payloads.Associations`) (resolved by #3469) 2. Missing imports (e.g. `data`) The second issue is unclear whether it...
That's nice, but it will take some time to design, so I'll add an error message for now. Thank you.
https://github.com/goadesign/goa/issues/3484#issuecomment-2466517385 > ### 2. Interceptor Framework > - Generated OpenAPI specifications that accurately reflect data usage How exactly do you plan to generate it?
I don't fully understand interceptor yet, but I have some concerns about middleware. * It is not possible to guarantee that middleware specified in the DSL will be mounted. ```go...
I'm considering this feature.
It's exactly what I'm thinking. Custom marshalers/unmarshalers are elegant because they can be used widely, not just for Time.
Have you tried Path DSL? https://pkg.go.dev/goa.design/goa/v3/dsl#Path
You can use a path parameter in the Path DSL. The base path cannot be included in the client, but can be dynamically provided via the request payload. See Param...