(mut self, server: impl Into<Cow<'a, str>>)
| 48 | } |
| 49 | |
| 50 | pub fn add_server(mut self, server: impl Into<Cow<'a, str>>) -> Self { |
| 51 | self.servers.push(server.into()); |
| 52 | self |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | /// Configuration describing how a pRPC service should be exposed over HTTP. |
no outgoing calls