goscord
1.0.0
Goscord は、Discord API への高レベルのバインディングを提供する Golang のパッケージです。
# Init the module:
go mod init < url >
# Install Goscord:
go get -u github.com/Goscord/goscord
さまざまな Discord API 関数にアクセスし、Discord イベントのコールバック関数を設定するために使用できる新しい Discord クライアントを構築します。
package main
import (
"fmt"
"github.com/Goscord/goscord/goscord"
"github.com/Goscord/goscord/goscord/discord"
"github.com/Goscord/goscord/goscord/gateway"
"github.com/Goscord/goscord/goscord/gateway/event"
)
var client * gateway. Session
func main () {
fmt . Println ( "Starting..." )
client := goscord . New ( & gateway. Options {
Token : "token" ,
Intents : gateway . IntentGuildMessages ,
})
client . On ( event . EventReady , func () {
fmt . Println ( "Logged in as " + client . Me (). Tag ())
})
client . On ( event . EventMessageCreate , func ( msg * discord. Message ) {
if msg . Content == "ping" {
client . Channel . SendMessage ( msg . ChannelId , "Pong ! ?" )
}
})
client . Login ()
select {}
}
詳細については、ドキュメントを参照してください。
プルリクエストは大歓迎です。大きな変更の場合は、まず問題を開いて、変更したい内容について話し合ってください。