Don't forget GoImports...

This commit is contained in:
Bruce Marriner 2016-04-23 22:35:12 -05:00
parent bda7434f18
commit bcc42e8211

View file

@ -12,7 +12,10 @@
package discordgo package discordgo
import "errors" import (
"errors"
"sync"
)
// ErrNilState is returned when the state is nil. // ErrNilState is returned when the state is nil.
var ErrNilState = errors.New("State not instantiated, please use discordgo.New() or assign Session.State.") var ErrNilState = errors.New("State not instantiated, please use discordgo.New() or assign Session.State.")