this repo has no description
3
fork

Configure Feed

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

๐Ÿ› Add video-server to enabled_features()

+2
+2
src/lib.rs
··· 10 10 features.push("cli"); 11 11 #[cfg(feature = "web")] 12 12 features.push("web"); 13 + #[cfg(feature = "video-server")] 14 + features.push("video-server"); 13 15 features 14 16 } 15 17