MCPcopy Create free account
hub / github.com/dtormoen/tsk-tsk / logs_stream

Method logs_stream

src/docker/proxy_manager.rs:958–967  ·  view source on GitHub ↗
(
                &self,
                _id: &str,
                _options: Option<LogsOptions>,
            )

Source from the content-addressed store, hash-verified

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())

Callers 1

stream_container_logsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected