Skip to content

Commit

Permalink
chore: add color to welcome message
Browse files Browse the repository at this point in the history
  • Loading branch information
nicotsx committed Feb 3, 2024
1 parent 9a0cb61 commit d97fd10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ mod utils;

use args::RuntipiArgs;
use clap::Parser;
use colored::Colorize;

use crate::commands::update::UpdateArgs;

fn main() {
let args = RuntipiArgs::parse();

println!("Welcome to Runtipi CLI ✨");
println!("{}", "Welcome to Runtipi CLI ✨\n".green());

match args.command {
args::RuntipiMainCommand::Start(args) => {
Expand Down

0 comments on commit d97fd10

Please sign in to comment.