pikav-client 0.20.14

A client that help you publish to pikav server
1
2
3
4
5
6
7
8
9
use std::{env, path::PathBuf};

fn main() {
    let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
    tonic_build::configure()
        .file_descriptor_set_path(out_dir.join("timada_descriptor.bin"))
        .compile(&["proto/timada/pikav.proto"], &["proto"])
        .unwrap();
}