mirror of
https://github.com/jeremyd/ergo.git
synced 2026-04-27 08:00:00 -07:00
8 lines
134 B
Go
8 lines
134 B
Go
//go:build plan9 || solaris
|
|
|
|
package flock
|
|
|
|
func TryAcquireFlock(path string) (fl Flocker, err error) {
|
|
return &noopFlocker{}, nil
|
|
}
|