mirror of
https://github.com/fumiama/RVC-Models-Downloader.git
synced 2024-11-17 21:57:10 +09:00
15 lines
255 B
Go
15 lines
255 B
Go
|
//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")
|
||
|
}
|