Init
Build and Publish / Build and Publish Docker Image (push) Successful in 10m8s

This commit is contained in:
Ultradesu
2026-08-05 12:32:52 +01:00
commit eb0d4fb1c5
46 changed files with 5623 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
pub mod browse;
pub mod dash;
pub mod path;
pub mod playback;
pub mod preview;
pub mod probe;
pub mod stream;
pub mod subtitles;
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct PathQuery {
#[serde(default)]
pub path: String,
}