aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 831063d39b1a226e1115726e6e7d6ff433dad94b (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 edit;
mod error;
mod macros;
mod who;

#[cfg(test)]
mod test;

fn main() {
    cli::entry()
}