feat: enable a basic app
This commit is contained in:
12
crates/forest/src/main.rs
Normal file
12
crates/forest/src/main.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
pub mod cli;
|
||||
pub mod state;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> anyhow::Result<()> {
|
||||
dotenvy::dotenv().ok();
|
||||
tracing_subscriber::fmt::init();
|
||||
|
||||
cli::execute().await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user