All checks were successful
Deploy on Master Change / deploy (push) Successful in 1m15s
12 lines
277 B
Go
12 lines
277 B
Go
package singleinstance
|
|
|
|
import "errors"
|
|
|
|
// ErrAlreadyRunning — đã có một tiến trình Simple Care đang chạy.
|
|
var ErrAlreadyRunning = errors.New("simple care already running")
|
|
|
|
const (
|
|
mutexName = "Local\\SimpleCare_SingleInstance"
|
|
windowTitle = "Simple Care"
|
|
)
|