1
0
mirror of https://github.com/fumiama/RVC-Models-Downloader.git synced 2024-09-29 14:26:25 +09:00
RVC-Models-Downloader/console/console_ansi.go

15 lines
255 B
Go
Raw Normal View History

2024-04-18 01:52:23 +09:00
//go:build !windows
// Package console sets console's behavior on init
package console
// https://github.com/FloatTech/ZeroBot-Plugin/blob/master/console/console_ansi.go
import (
"fmt"
)
func init() {
fmt.Print("\033]0;RVC Models Downloader\007")
}