mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 00:19:29 +01: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
|
|
}
|