reg/vendor/github.com/docker/docker-ce/components/engine/daemon/graphdriver/vfs/quota_unsupported.go
Jess Frazelle 8e5eba8735
switch to dep
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2017-12-11 14:50:55 -05:00

20 lines
337 B
Go

// +build !linux
package vfs
import "github.com/docker/docker/daemon/graphdriver/quota"
type driverQuota struct {
}
func setupDriverQuota(driver *Driver) error {
return nil
}
func (d *Driver) setupQuota(dir string, size uint64) error {
return quota.ErrQuotaNotSupported
}
func (d *Driver) quotaSupported() bool {
return false
}