本文整理汇总了Golang中github.com/bwmarrin/discordgo.Session.UpdateStatus方法的典型用法代码示例。如果您正苦于以下问题:Golang Session.UpdateStatus方法的具体用法?Golang Session.UpdateStatus怎么用?Golang Session.UpdateStatus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/bwmarrin/discordgo.Session
的用法示例。
在下文中一共展示了Session.UpdateStatus方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ready
func ready(s *discordgo.Session, event *discordgo.Ready) {
// Set the playing status.
_ = s.UpdateStatus(0, "!airhorn")
}
示例2: onReady
func onReady(s *discordgo.Session, event *discordgo.Ready) {
log.Info("Recieved READY payload")
s.UpdateStatus(0, "airhornbot.com")
}
示例3: onReady
// the below method is invoked when the Discord Websocket API transmits
// the 'ready' event to the bot
func onReady(s *discordgo.Session, event *discordgo.Ready) {
logrus.Info("Received ready event from Discord Websocket API.")
s.UpdateStatus(0, "Bill's PC")
}