aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: a97d952516b9abd1e4972445c0b8d1f350ca50ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use mingling::macros::gen_program;

mod bill;
mod calc;
mod cli;
mod error;
mod who;

#[cfg(test)]
mod test;

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

use crate::cli::calc_cmd::*;
use crate::cli::dispatchers::*;
use crate::cli::entry::*;
use crate::cli::io_error::*;
use crate::cli::ops_cmd::*;

gen_program!();