This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::error::Error; | |
use clap::{Arg, ArgMatches, builder::NonEmptyStringValueParser, Command}; | |
use mysteriouspants_clap_action_command::{ | |
ActionCommand, CommandMap, get_one, vec1::{Vec1, vec1} | |
}; | |
static NAME_ARG: &str = "name"; | |
struct HelloWorldCommand {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! Start a Podman service socket. | |
use podtender::podman_service::PodmanService; | |
use std::{ | |
env::{var, VarError}, | |
io::Error as IOError, | |
ops::Deref, | |
sync::Arc, | |
time::{SystemTime, UNIX_EPOCH}, | |
}; |
OlderNewer