Files
stream.api/internal/video/runtime/services/agent_stats.go
2026-03-13 02:17:18 +00:00

9 lines
163 B
Go

package services
import "stream.api/internal/video/runtime/domain"
type AgentWithStats struct {
*domain.Agent
ActiveJobCount int64 `json:"active_job_count"`
}