mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 15:47:14 +01:00
9 lines
167 B
Go
9 lines
167 B
Go
package flock
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrAlreadyLocked is returned when the file is already locked.
|
|
ErrAlreadyLocked = errors.New("the file is already locked")
|
|
)
|