README updates (#935)
* go fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update README Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Carson Hoffman <c@rsonhoffman.com>
This commit is contained in:
parent
9e4f05730f
commit
df74d8bbe6
2 changed files with 17 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
||||||
# DiscordGo
|
# DiscordGo
|
||||||
|
|
||||||
[](https://pkg.go.dev/github.com/bwmarrin/discordgo) [](http://goreportcard.com/report/bwmarrin/discordgo) [](https://travis-ci.com/bwmarrin/discordgo) [](https://discord.gg/0f1SbxBZjYoCtNPP) [](https://discord.com/invite/discord-api)
|
[](https://pkg.go.dev/github.com/bwmarrin/discordgo) [](https://goreportcard.com/report/github.com/bwmarrin/discordgo) [](https://travis-ci.com/bwmarrin/discordgo) [](https://discord.gg/golang) [](https://discord.com/invite/discord-api)
|
||||||
|
|
||||||
<img align="right" src="https://github.com/bwmarrin/discordgo/blob/master/docs/img/discordgo.png">
|
<img align="right" src="https://github.com/bwmarrin/discordgo/blob/master/docs/img/discordgo.png">
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ tool that wraps `ffmpeg` to create opus encoded audio appropriate for use with
|
||||||
Discord (and DiscordGo).
|
Discord (and DiscordGo).
|
||||||
|
|
||||||
**For help with this package or general Go discussion, please join the [Discord
|
**For help with this package or general Go discussion, please join the [Discord
|
||||||
Gophers](https://discord.gg/0f1SbxBZjYq9jLBk) chat server.**
|
Gophers](https://discord.gg/golang) chat server.**
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ the only documentation available. Both GoDoc and GoWalker (below) present
|
||||||
that information in a nice format.
|
that information in a nice format.
|
||||||
|
|
||||||
- [](https://pkg.go.dev/github.com/bwmarrin/discordgo)
|
- [](https://pkg.go.dev/github.com/bwmarrin/discordgo)
|
||||||
- [](https://gowalker.org/github.com/bwmarrin/discordgo)
|
- [](https://gowalker.org/github.com/bwmarrin/discordgo)
|
||||||
- Hand crafted documentation coming eventually.
|
- Hand crafted documentation coming eventually.
|
||||||
|
|
||||||
|
|
||||||
|
|
1
user.go
1
user.go
|
@ -21,6 +21,7 @@ const (
|
||||||
UserFlagBugHunterLevel2 = 1 << 14
|
UserFlagBugHunterLevel2 = 1 << 14
|
||||||
UserFlagVerifiedBot = 1 << 16
|
UserFlagVerifiedBot = 1 << 16
|
||||||
UserFlagVerifiedBotDeveloper = 1 << 17
|
UserFlagVerifiedBotDeveloper = 1 << 17
|
||||||
|
UserFlagDiscordCertifiedModerator = 1 << 18
|
||||||
)
|
)
|
||||||
|
|
||||||
// A User stores all data for an individual Discord user.
|
// A User stores all data for an individual Discord user.
|
||||||
|
|
Loading…
Reference in a new issue