mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 16:39:32 +01:00
ed75533cb1
* optionally protect against multiple starts with flock Fixes #1823 * use traditional .lock extension * move config key to top level
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
|
|
}
|