1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

uptime: merge two imports

This commit is contained in:
Daniel Hofstetter 2025-05-06 10:58:55 +02:00
parent 876f941e8e
commit 157f653780

View file

@ -9,12 +9,10 @@ use chrono::{Local, TimeZone, Utc};
use clap::ArgMatches;
use std::io;
use thiserror::Error;
use uucore::error::UError;
use uucore::error::{UError, UResult};
use uucore::libc::time_t;
use uucore::uptime::*;
use uucore::error::UResult;
use clap::{Arg, ArgAction, Command, ValueHint, builder::ValueParser};
use uucore::{format_usage, help_about, help_usage};