- Gin HTTP server sa dashboard i API endpointima - JSON API: GET /api/tasks, GET /api/task/:id, POST /api/task/:id/move - HTML dashboard sa Kanban prikazom (5 kolona) - HTMX za interaktivnost (klik na task → detalj panel) - Embedded static fajlovi (htmx.min.js, sortable.min.js) - Config: dodat KAOS_PORT - 10 server testova, 77 ukupno — svi prolaze - Očišćeni duplikati taskova iz v0.1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
200 B
Go
10 lines
200 B
Go
// Package web embeds static assets for the KAOS dashboard.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
// StaticFS contains embedded static files (htmx, sortable, css).
|
|
//
|
|
//go:embed static/*
|
|
var StaticFS embed.FS
|