forked from pothtonswer/discordmuffin
Slight update..
This commit is contained in:
parent
b5bb8f7477
commit
58d143ccb3
1 changed files with 5 additions and 3 deletions
|
@ -63,7 +63,7 @@ To create a new user account (if you have not done so already) visit the
|
||||||
new account.
|
new account.
|
||||||
|
|
||||||
|
|
||||||
### Bot Application
|
#### Bot Application
|
||||||
A bot application is a special program that interacts with the Discord servers
|
A bot application is a special program that interacts with the Discord servers
|
||||||
to perform some form of automation or provide some type of service. Examples
|
to perform some form of automation or provide some type of service. Examples
|
||||||
are things like number trivia games, music streaming, channel moderation,
|
are things like number trivia games, music streaming, channel moderation,
|
||||||
|
@ -82,6 +82,8 @@ page and click on the **New Application** box. Follow the prompts from there
|
||||||
to finish creating your account.
|
to finish creating your account.
|
||||||
|
|
||||||
|
|
||||||
|
**More information about Bots vs Client accounts can be found [here](https://discordapp.com/developers/docs/topics/oauth2#bot-vs-user-accounts)**
|
||||||
|
|
||||||
# Requirements
|
# Requirements
|
||||||
|
|
||||||
DiscordGo requires Go version 1.4 or higher. It has been tested to compile and
|
DiscordGo requires Go version 1.4 or higher. It has been tested to compile and
|
||||||
|
@ -108,7 +110,7 @@ Like any other Go package the fist step is to `go get` the package. This will
|
||||||
always pull the latest released version from the master branch. Then run
|
always pull the latest released version from the master branch. Then run
|
||||||
`go install` to compile and install the libraries on your system.
|
`go install` to compile and install the libraries on your system.
|
||||||
|
|
||||||
### Linux/BSD
|
#### Linux/BSD
|
||||||
|
|
||||||
Run go get to download the package to your GOPATH/src folder.
|
Run go get to download the package to your GOPATH/src folder.
|
||||||
|
|
||||||
|
@ -132,7 +134,7 @@ cd $GOPATH/src/github.com/bwmarrin/discordgo
|
||||||
go install
|
go install
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows
|
#### Windows
|
||||||
Placeholder.
|
Placeholder.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue