Browse and listen to thousands of radio stations across the globe right from your terminal 🌎 📻 🎵✨
radio rust tokio web-radio command-line-tool tui
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9715b16106e2eb8310bb48d4637f7ea370e747cd 15 lines 498 B view raw
1fn main() -> Result<(), Box<dyn std::error::Error>> { 2 tonic_build::configure() 3 .out_dir("src/api") 4 .file_descriptor_set_path("src/api/descriptor.bin") 5 .compile_protos( 6 &[ 7 "proto/objects/v1alpha1/category.proto", 8 "proto/objects/v1alpha1/station.proto", 9 "proto/tunein/v1alpha1/browse.proto", 10 "proto/tunein/v1alpha1/playback.proto", 11 ], 12 &["proto"], 13 )?; 14 Ok(()) 15}