11 lines
154 B
Go
11 lines
154 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/bwmarrin/discordgo"
|
|
)
|
|
|
|
func ClearCommand(session *discordgo.Session) {
|
|
fmt.Print("\n\r\033[H\033[2J")
|
|
}
|