chore: added ascii art
bf0a6540
1 file(s) · +13 −1
| 11 | 11 | use cielago::openapi; |
|
| 12 | 12 | use cielago::store::{self, AppConfig}; |
|
| 13 | 13 | ||
| 14 | + | const BANNER: &str = r#" |
|
| 15 | + | ||
| 16 | + | c i e l a g o |
|
| 17 | + | ||
| 18 | + | .-'"/'. |
|
| 19 | + | _-" ( '-_ |
|
| 20 | + | _.-' ) "-._ |
|
| 21 | + | .-' ` |
|
| 22 | + | ____________ _____ __ |
|
| 23 | + | "#; |
|
| 24 | + | ||
| 14 | 25 | #[derive(Parser)] |
|
| 15 | 26 | #[command( |
|
| 16 | 27 | name = "cielago", |
|
| 17 | 28 | version, |
|
| 18 | - | about = "A Postman-like TUI driven by OpenAPI collections" |
|
| 29 | + | about = "Like Postman but it actually works", |
|
| 30 | + | before_help = BANNER |
|
| 19 | 31 | )] |
|
| 20 | 32 | struct Cli { |
|
| 21 | 33 | #[command(subcommand)] |