parrot_core 0.1.4

Parrot is your personal assistant
1
2
3
4
5
6
7
8
9
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_client(false)
        .out_dir("src/core/pb")
        .compile(&["proto/job/job_service.proto"], &["proto"])
        .unwrap();
    Ok(())
}