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