mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 05:30:07 +08:00
15 lines
266 B
Go
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")
|
|
}
|