mirror of
https://github.com/fankes/komari-agent.git
synced 2025-10-18 18:49:23 +08:00
14 lines
171 B
Go
14 lines
171 B
Go
//go:build !windows
|
|
|
|
package cmd
|
|
|
|
func WarnKomariRunning() {
|
|
// No-op on non-Windows platforms
|
|
return
|
|
}
|
|
|
|
func ShowToast() {
|
|
// No-op on non-Windows platforms
|
|
return
|
|
}
|