| 13 | pub use prost::Message as ProstMessage; |
| 14 | |
| 15 | pub trait Endpoint { |
| 16 | fn credentials(&self) -> String; |
| 17 | fn as_url(&self) -> String; |
| 18 | } |
| 19 | |
| 20 | pub trait DefaultPort { |
| 21 | fn default_port(&self) -> Option<u16>; |
no outgoing calls
no test coverage detected