8 lines
224 B
Go
8 lines
224 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
// acquireSingleInstance is a no-op off Windows (the single-instance guard uses a
|
|
// Windows named mutex). Always allows the app to start.
|
|
func acquireSingleInstance() bool { return true }
|