Browse Source

Don't forget GoImports...

Bruce Marriner 8 năm trước cách đây
mục cha
commit
bcc42e8211
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  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.")