comcord/commands/clear.go

12 lines
154 B
Go
Raw Normal View History

2023-07-09 20:00:49 +00:00
package commands
import (
"fmt"
"github.com/bwmarrin/discordgo"
)
func ClearCommand(session *discordgo.Session) {
fmt.Print("\n\r\033[H\033[2J")
}