Files
HellreigN/backend/internal/models/job.go
T
2026-04-05 04:57:43 +03:00

18 lines
234 B
Go

package models
type Job struct {
ID int64
AgentID string
JobForInsert
JobForUpdate
}
type JobForInsert struct {
Command []string
Stdin *string
}
type JobForUpdate struct {
Stdout string
Stderr string
Status int32
}