// app/ui/embed.go // Встраивание и раздача UI (SPA) для shared-sqs console // Created: 2026-04-10 package ui import ( "embed" "net/http" ) //go:embed index.html var content embed.FS // Handler — возвращает http.Handler, раздающий встроенный index.html func Handler() http.Handler { return http.FileServer(http.FS(content)) }