1
2
3
4
5
6
7
8
mod load;

use clap::Parser;
use load::IapyxLoadCommand;

pub fn main() {
    IapyxLoadCommand::parse().exec().unwrap();
}