aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 8a31d0938e87af7681cf804f23db9ca7b27d841e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod bill;
mod calc;
mod cli;
mod display;
mod edit;
mod error;
mod macros;
mod who;

#[cfg(test)]
mod test;

#[tokio::main]
async fn main() {
    cli::entry().await
}