mirror of https://github.com/synctv-org/synctv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
193 B
Rust
5 lines
193 B
Rust
|
2 months ago
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||
|
|
std::env::set_current_dir(concat!(env!("CARGO_MANIFEST_DIR"), "/../synctv-proto"))?;
|
||
|
|
synctv_proto_build::build_providers_crate()
|
||
|
|
}
|