Files
copilot-app/pkg/message/message_other.go
2025-08-13 19:03:20 +08:00

12 lines
152 B
Go

//go:build !windows
package message
import (
"log"
)
func ShowAppLaunchMessage() {
log.Printf("%s: %s\n", "运行成功", "服务已经启动.")
}