Files

14 lines
190 B
Go
Raw Permalink 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() {}