add process with node API key added

This commit is contained in:
Blomios
2026-01-18 22:22:00 +01:00
parent b69c69e11a
commit e8e2a4a01e
17 changed files with 390 additions and 156 deletions

View File

@ -46,3 +46,10 @@ type ServiceMinimal struct {
NodeId int `json:"node_id"`
ServiceId int `json:"service_id"`
}
type AddServiceRequest struct {
NodeId int `json:"node_id"`
Name string `json:"name"`
Command string `json:"command"`
NodeApiKey string `json:"node_api_key"`
}