forked from pothtonswer/discordmuffin
Don't forget GoImports...
This commit is contained in:
parent
bda7434f18
commit
bcc42e8211
1 changed files with 4 additions and 1 deletions
5
state.go
5
state.go
|
@ -12,7 +12,10 @@
|
|||
|
||||
package discordgo
|
||||
|
||||
import "errors"
|
||||
import (
|
||||
"errors"
|
||||
"sync"
|
||||
)
|
||||
|
||||
// ErrNilState is returned when the state is nil.
|
||||
var ErrNilState = errors.New("State not instantiated, please use discordgo.New() or assign Session.State.")
|
||||
|
|
Loading…
Reference in a new issue