smaller json and fix header
All checks were successful
Pipeline was successful

This commit is contained in:
2023-11-13 21:01:32 +01:00
parent 09c85fc3bd
commit 48b4b273ee
2 changed files with 7 additions and 5 deletions

View File

@ -90,3 +90,8 @@ type Agent struct {
type AgentList struct {
Agents []Agent
}
type AgentRequest struct {
Name string `json:"name"`
NoSchedule bool `json:"no_schedule"`
}