Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A Discord API wrapper written in Golang.

License

NotificationsYou must be signed in to change notification settings

Goscord/goscord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goscord

Goscord is a package forGolang that provides high level bindings to theDiscord API.

Getting Started

Installing

# Init the module:go mod init<url># Install Goscord:go get -u github.com/Goscord/goscord

Usage

Construct a new Discord client which can be used to access the variety ofDiscord API functions and to set callback functions for Discord events.

package mainimport ("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")varclient*gateway.Sessionfuncmain() {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) {ifmsg.Content=="ping" {client.Channel.SendMessage(msg.ChannelId,"Pong ! 🏓")        }    })client.Login()select {}}

Seedocumentation for more detailed information.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.


[8]ページ先頭

©2009-2025 Movatter.jp