mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 19:17:37 +08:00
10 lines
204 B
Go
10 lines
204 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package terminal
|
|
|
|
// RunningByDoubleClick 检查是否通过双击直接运行,非Windows系统永远返回false
|
|
func RunningByDoubleClick() bool {
|
|
return false
|
|
}
|