blob: 614693bf5c5ecdfb52a8b061f53dc6b8f5edfd6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
mod bill;
mod calc;
mod cli;
mod display;
mod error;
mod macros;
mod who;
#[cfg(test)]
mod test;
#[tokio::main]
async fn main() {
cli::entry().await
}
|