fix ui
All checks were successful
Deploy on Master Change / deploy (push) Successful in 1m15s

This commit is contained in:
2026-07-13 10:04:56 +07:00
parent 58c96609b6
commit b4c3155564
11 changed files with 587 additions and 97 deletions

View File

@@ -0,0 +1,11 @@
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"
)