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 clap::{Parser, Subcommand}; | |
| #[derive(Parser)] | |
| #[command( | |
| name = "cubo", | |
| version = "0.1.0", | |
| author = "Amar FILALI", | |
| about = "A lightweight containerization tool focused on isolation and security ish." | |
| )] | |
| pub struct Cli { | |
| #[command(subcommand)] |