(
&self,
_id: &str,
_options: Option<LogsOptions>,
)
| 956 | } |
| 957 | |
| 958 | async fn logs_stream( |
| 959 | &self, |
| 960 | _id: &str, |
| 961 | _options: Option<LogsOptions>, |
| 962 | ) -> Result<Box<dyn Stream<Item = Result<String, String>> + Send + Unpin>, String> |
| 963 | { |
| 964 | use futures_util::stream; |
| 965 | let stream = stream::once(async { Ok("".to_string()) }); |
| 966 | Ok(Box::new(Box::pin(stream))) |
| 967 | } |
| 968 | |
| 969 | async fn create_network(&self, _name: &str) -> Result<String, String> { |
| 970 | Ok("network-id".to_string()) |
no outgoing calls
no test coverage detected