mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-05 03:23:49 +08:00
9 lines
157 B
Go
9 lines
157 B
Go
//go:build !windows
|
||
|
||
package terminal
|
||
|
||
// EnableVT100 启用颜色、控制字符,非Windows系统永远返回nil
|
||
func EnableVT100() error {
|
||
return nil
|
||
}
|