m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-13 07:33:48 -05:00
This commit is contained in:
Sergio
2024-10-25 12:13:25 +03:00
parent 8fd012efbe
commit eda30229e2
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ pub struct Image {
pub local_digests: Option<Vec<String>>,
pub remote_digest: Option<String>,
pub error: Option<String>,
pub time_ms: i64
pub time_ms: i64,
}
impl Image {

View File

@@ -6,8 +6,8 @@ use docker::get_images_from_docker_daemon;
use formatting::{print_raw_updates, print_updates, Spinner};
#[cfg(feature = "server")]
use server::serve;
use utils::timestamp;
use std::path::PathBuf;
use utils::timestamp;
pub mod check;
pub mod config;