package common import "github.com/jinzhu/gorm/dialects/postgres" type KeyModels map[string]interface{} type Request struct { Username string `json:"username,omitempty"` Password string `json:"password,omitempty"` Mail string `json:"mail,omitempty"` Role string `json:"role,omitempty"` Name string `json:"name,omitempty"` Running bool `json:"running,omitempty"` StartParameters postgres.Jsonb `json:"startParameters,omitempty"` }