NewServer returns a reflection server implementation using the given options. This can be used to customize behavior of the reflection service. Most usages should prefer to use Register instead. For backwards compatibility reasons, this returns the v1alpha version of the reflection server. For a v1
(opts ServerOptions)
| 134 | // Notice: This function is EXPERIMENTAL and may be changed or removed in a |
| 135 | // later release. |
| 136 | func NewServer(opts ServerOptions) v1alphareflectiongrpc.ServerReflectionServer { |
| 137 | return asV1Alpha(NewServerV1(opts)) |
| 138 | } |
| 139 | |
| 140 | // NewServerV1 returns a reflection server implementation using the given options. |
| 141 | // This can be used to customize behavior of the reflection service. Most usages |
nothing calls this directly
no test coverage detected