deprecate k-tv-backend, fix workspace feature-unification build

This commit is contained in:
2026-07-12 03:35:09 +02:00
parent c869e9ab84
commit dd4389d53e
3 changed files with 5 additions and 1 deletions

View File

@@ -127,6 +127,7 @@ fn wire_repositories(pool: &DbPool) -> anyhow::Result<WireOutput> {
library_query: w.library_query, library_query: w.library_query,
}) })
} }
_ => anyhow::bail!("database backend not compiled into this binary"),
} }
} }

View File

@@ -229,6 +229,7 @@ fn wire_repositories(pool: &DbPool) -> anyhow::Result<WireOutput> {
provider_config_query: w.provider_config_query, provider_config_query: w.provider_config_query,
}) })
} }
_ => anyhow::bail!("database backend not compiled into this binary"),
} }
} }

View File

@@ -1,4 +1,6 @@
# K-TV Backend # K-TV Backend (DEPRECATED)
> **DEPRECATED**: This monolithic backend has been superseded by the new multi-crate workspace under `crates/`. Use `cargo build -p presentation` for the HTTP server and `cargo build -p mcp` for the MCP server. This directory is excluded from the workspace and will be removed in a future release.
The Rust API server for K-TV — a self-hosted linear TV channel orchestration layer for personal media servers. The Rust API server for K-TV — a self-hosted linear TV channel orchestration layer for personal media servers.