mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 19:17:37 +08:00
14 lines
278 B
Go
14 lines
278 B
Go
//go:build !windows
|
||
|
||
package terminal
|
||
|
||
// RestoreInputMode 还原输入模式,非Windows系统永远返回nil
|
||
func RestoreInputMode() error {
|
||
return nil
|
||
}
|
||
|
||
// DisableQuickEdit 禁用快速编辑,非Windows系统永远返回nil
|
||
func DisableQuickEdit() error {
|
||
return nil
|
||
}
|