ab35df454d
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
603 B
Go
18 lines
603 B
Go
//go:build (linux && exclude_disk_quota) || (linux && !cgo) || !linux
|
|
|
|
package quota // import "github.com/docker/docker/quota"
|
|
|
|
func NewControl(basePath string) (*Control, error) {
|
|
return nil, ErrQuotaNotSupported
|
|
}
|
|
|
|
// SetQuota - assign a unique project id to directory and set the quota limits
|
|
// for that project id
|
|
func (q *Control) SetQuota(targetPath string, quota Quota) error {
|
|
return ErrQuotaNotSupported
|
|
}
|
|
|
|
// GetQuota - get the quota limits of a directory that was configured with SetQuota
|
|
func (q *Control) GetQuota(targetPath string, quota *Quota) error {
|
|
return ErrQuotaNotSupported
|
|
}
|