ergo/irc/flock/flock_unsupported.go
Shivaram Lingamneni df6aa4c34b
Some checks failed
build / build (push) Has been cancelled
ghcr / Build (push) Has been cancelled
enable building for solaris (#2183)
2024-08-02 15:09:28 -04:00

7 lines
134 B
Go

//go:build plan9 || solaris
package flock
func TryAcquireFlock(path string) (fl Flocker, err error) {
return &noopFlocker{}, nil
}