huskies: merge 1121 story Remove the marketing website from the huskies OSS repo (now lives in huskies-server)

This commit is contained in:
dave
2026-05-17 18:37:57 +00:00
parent 240beec7de
commit 6331dea8b0
27 changed files with 1 additions and 4058 deletions
-7
View File
@@ -62,13 +62,6 @@ pub fn build_gateway_route(state_arc: Arc<GatewayState>) -> impl poem::Endpoint
"/gateway/agents/:id/assign",
poem::post(gateway_assign_agent_handler),
)
// Serve the embedded React frontend so the gateway has a UI.
.at(
"/assets/*path",
poem::get(crate::http::assets::embedded_asset),
)
.at("/*path", poem::get(crate::http::assets::embedded_file))
.at("/", poem::get(crate::http::assets::embedded_index))
.data(state_arc)
}