mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 16:39:32 +01:00
8 lines
123 B
Go
8 lines
123 B
Go
|
//go:build plan9
|
||
|
|
||
|
package flock
|
||
|
|
||
|
func TryAcquireFlock(path string) (fl Flocker, err error) {
|
||
|
return &noopFlocker{}, nil
|
||
|
}
|