Add comprehensive Claude Code monitoring and realtime streaming to the K8s dashboard. Includes API endpoints for health, stats, summary, inventory, and live event streaming. Frontend provides overview, usage, inventory, debug, and live feed views.
10 lines
136 B
Go
10 lines
136 B
Go
package claude
|
|
|
|
import "testing"
|
|
|
|
func TestModelTypesCompile(t *testing.T) {
|
|
_ = StatsCache{}
|
|
_ = DailyActivity{}
|
|
_ = ModelUsage{}
|
|
}
|