feature/fix-required-args (#40)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/octopush/pulls/40
This commit is contained in:
2022-11-27 20:10:41 +00:00
parent bb51770505
commit 0878d71ff0
4 changed files with 11 additions and 4 deletions

View File

@@ -1,9 +1,15 @@
use dotenv::dotenv;
use eyre::Context;
use tracing_subscriber::prelude::*;
#[tokio::main]
async fn main() -> eyre::Result<()> {
dotenv()?;
if let Err(e) = dotenv().context(".env file not found") {
tracing::info!(
error = e.to_string(),
"no .env file specified, command args are required"
);
}
tracing_subscriber::registry()
.with(tracing_subscriber::EnvFilter::new(