aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-ai/src/main.rs
blob: fb1e517e1dcd4ca6d7a5aa47b86eab3f2ceb998e (plain) (blame)
1
2
3
4
5
6
7
pub mod commands;
pub mod tui;

#[tokio::main]
async fn main() -> eyre::Result<()> {
    commands::run().await
}