//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 }