Explorar el Código

Don't forget GoImports...

Bruce Marriner hace 8 años
padre
commit
bcc42e8211
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      state.go

+ 4 - 1
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.")