feat: enable a basic app

This commit is contained in:
2025-02-07 21:31:12 +01:00
commit 434f655059
13 changed files with 816 additions and 0 deletions

12
crates/forest/src/main.rs Normal file
View 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(())
}