瀏覽代碼

Move MakeIntent method

Łukasz Horonziak 4 年之前
父節點
當前提交
0e6ec53738
共有 2 個文件被更改,包括 5 次插入4 次删除
  1. 5 0
      structs.go
  2. 0 4
      util.go

+ 5 - 0
structs.go

@@ -1141,3 +1141,8 @@ const (
 		IntentsGuildPresences
 	IntentsNone Intent = 0
 )
+
+// MakeIntent helps convert a gateway intent value for use in the Identify structure.
+func MakeIntent(intents Intent) *Intent {
+	return &intents
+}

+ 0 - 4
util.go

@@ -15,7 +15,3 @@ func SnowflakeTimestamp(ID string) (t time.Time, err error) {
 	t = time.Unix(timestamp/1000, 0)
 	return
 }
-
-func MakeIntent(intents Intent) *Intent {
-	return &intents
-}