mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
12 lines
358 B
Go
12 lines
358 B
Go
package resource
|
|
|
|
// Resource is a collection of resource constraints for apps
|
|
type Resource struct {
|
|
CPU string `json:"cpu"`
|
|
Memory string `json:"memory"`
|
|
MemorySwap string `json:"memory-swap"`
|
|
Network string `json:"network"`
|
|
NetworkIngress string `json:"network-ingress"`
|
|
NetworkEgress string `json:"network-egress"`
|
|
}
|