mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 02:00:11 -08:00
7 lines
134 B
Go
7 lines
134 B
Go
//go:build plan9 || solaris
|
|
|
|
package flock
|
|
|
|
func TryAcquireFlock(path string) (fl Flocker, err error) {
|
|
return &noopFlocker{}, nil
|
|
}
|