buildx/controller/pb/ulimit.go

12 lines
126 B
Go

package pb
type UlimitOpt struct {
Values map[string]*Ulimit
}
type Ulimit struct {
Name string
Hard int64
Soft int64
}