ZeroBot-Plugin/console/console.go
2023-03-01 12:22:14 +08:00

13 lines
245 B
Go

// 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")
}