AnyResolver takes a type URL, present in an Any message, and resolves it into an instance of the associated message.
| 23 | // AnyResolver takes a type URL, present in an Any message, |
| 24 | // and resolves it into an instance of the associated message. |
| 25 | type AnyResolver interface { |
| 26 | Resolve(typeURL string) (proto.Message, error) |
| 27 | } |
| 28 | |
| 29 | type anyResolver struct{ AnyResolver } |
| 30 |
no outgoing calls
no test coverage detected