File: version.rs

package info (click to toggle)
rust-dockworker 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 764 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 175 bytes parent folder | download
1
2
3
4
5
6
7
use dockworker::Docker;

#[tokio::main]
async fn main() {
    let docker = Docker::connect_with_defaults().unwrap();
    println!("{:#?}", docker.version().await.unwrap());
}