comcord/commands/clear.go
2023-07-26 20:27:04 -06:00

9 lines
94 B
Go

package commands
import (
"fmt"
)
func ClearCommand() {
fmt.Print("\n\r\033[H\033[2J")
}