comcord/events/ready.go

16 lines
315 B
Go
Raw Normal View History

package events
import (
"fmt"
"github.com/bwmarrin/discordgo"
"github.com/fatih/color"
)
func Ready(session *discordgo.Session, event *discordgo.Ready) {
fmt.Print("Logged in as: ")
2023-07-08 20:51:26 +00:00
color.Set(color.FgYellow)
fmt.Printf("%s (%s)\n", session.State.User.Username, session.State.User.ID)
color.Unset()
}