ZeroBot-Plugin/console/console_ansi.go
2023-03-01 21:13:18 +08:00

15 lines
266 B
Go

//go:build !windows
// Package console sets console's behavior on init
package console
import (
"fmt"
"github.com/FloatTech/ZeroBot-Plugin/kanban/banner"
)
func init() {
fmt.Print("\033]0;ZeroBot-Blugin " + banner.Version + " " + banner.Copyright + "\007")
}