forked from External/ergo
* optionally protect against multiple starts with flock Fixes #1823 * use traditional .lock extension * move config key to top level
7 lines
123 B
Go
7 lines
123 B
Go
//go:build plan9
|
|
|
|
package flock
|
|
|
|
func TryAcquireFlock(path string) (fl Flocker, err error) {
|
|
return &noopFlocker{}, nil
|
|
}
|