Files
go-worm/lib/instance/mutex_stub.go
T

14 lines
190 B
Go
Raw Normal View History

//go:build !windows
package instance
type Guard struct{}
func Acquire() (*Guard, error) {
return &Guard{}, nil
}
func AlreadyRunning() bool { return false }
func (g *Guard) Close() {}