Skip to main content

docker_tools/
lib.rs

1pub mod cli;
2pub mod completion;
3
4mod runtime;
5
6pub fn run() -> i32 {
7    cli::run()
8}