mirror of
https://github.com/moby/buildkit.git
synced 2026-06-24 08:47:57 +00:00
10 lines
200 B
Go
10 lines
200 B
Go
//go:build !linux
|
|
|
|
package resources
|
|
|
|
import resourcestypes "github.com/moby/buildkit/executor/resources/types"
|
|
|
|
func newSysSampler() (*Sampler[*resourcestypes.SysSample], error) {
|
|
return nil, nil
|
|
}
|