application: config_snapshots, admin, providers, iptv

This commit is contained in:
2026-07-12 02:14:07 +02:00
parent ebf0614fdf
commit 466d34b5d0
37 changed files with 895 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
use uuid::Uuid;
/// List all config snapshots for a channel (newest first).
pub struct ListSnapshotsQuery {
pub channel_id: Uuid,
}
/// Get a specific config snapshot.
pub struct GetSnapshotQuery {
pub channel_id: Uuid,
pub snapshot_id: Uuid,
}