mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-08-22 15:22:50 +00:00
8 lines
133 B
Rust
8 lines
133 B
Rust
![]() |
use std::io::Result;
|
||
|
|
||
|
fn main() -> Result<()> {
|
||
|
prost_build::compile_protos(&["src/chromecast.proto"], &["src"])?;
|
||
|
|
||
|
Ok(())
|
||
|
}
|