mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 19:07:13 +00:00
15 lines
386 B
Go
15 lines
386 B
Go
package structs
|
|
|
|
// ProcessFormation represents the formation for a Process
|
|
type ProcessFormation struct {
|
|
Count int `json:"count"`
|
|
CPU int `json:"cpu"`
|
|
Hostname string `json:"hostname"`
|
|
Name string `json:"name"`
|
|
Memory int `json:"memory"`
|
|
Ports []int `json:"ports"`
|
|
}
|
|
|
|
// Formation represents the formation for an App
|
|
type Formation []ProcessFormation
|