feat: add install
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-09-07 23:43:04 +02:00
parent a4e252ac91
commit 195d772beb
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -9,6 +9,10 @@ pub mod services;
pub async fn run() -> anyhow::Result<()> {
dotenv::dotenv().ok();
rustls::crypto::ring::default_provider()
.install_default()
.expect("Failed to install rustls crypto provider");
Command::run().await?;
Ok(())