| 79 | } |
| 80 | |
| 81 | type GreetingInputWithResolverBody struct { |
| 82 | Suffix string `json:"suffix" maxLength:"5"` |
| 83 | } |
| 84 | |
| 85 | func (b *GreetingInputWithResolverBody) Resolve(ctx huma.Context, prefix *huma.PathBuffer) []error { |
| 86 | if len(b.Suffix) > 0 && b.Suffix[0] == 'a' { |
nothing calls this directly
no outgoing calls
no test coverage detected