feat: streamd daily is now default instead of streamd new

This commit is contained in:
Konstantin Fickel 2026-04-13 20:04:45 +02:00
parent 6c8f1f5253
commit ab2fc823e8
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -22,7 +22,7 @@ fn main() -> miette::Result<()> {
Some(Commands::Completions { shell }) => {
streamd::cli::commands::completions::run(shell);
}
None => streamd::cli::commands::new::run()?,
None => streamd::cli::commands::daily::run(None)?,
}
Ok(())