Add API endpoints for relocating processes

This commit is contained in:
Ingo Oppermann
2024-06-19 15:28:30 +02:00
parent de6a267fd4
commit a9d6b1ec49
18 changed files with 511 additions and 13 deletions

View File

@@ -7,6 +7,11 @@ import (
"github.com/lithammer/shortuuid/v4"
)
type ProcessID struct {
ID string `json:"id"`
Domain string `json:"domain"`
}
// Process represents all information on a process
type Process struct {
ID string `json:"id" jsonschema:"minLength=1"`