REPOSITORY OVERVIEWLive repository statistics
★ 74Stars
⑂ 16Forks
◯ 2Open issues
◉ 74Watchers
29/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
0 Community adoption25% weight
36 Maintenance state20% weight
0 License clarity10% weight
100 Project information10% weight
100 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
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 of
Discord API functions and to set callback functions for Discord events.
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 {}
}
See documentation 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.
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
SD-WEBUI-DISCORD is a Discord bot developed in Go language for stable-diffusion-webui. It utilizes the sd-webui-go to invoke the sd-webui API and supports cluster deployment of multiple sd-webui nodes with automatic scheduling and allocation.
81/100 healthRecently updatedActive repository
GoAGPL-3.0#api#bot#cluster#discord
⑂ 16 forks◯ 5 issuesUpdated 9 days ago
A Discord bot, written in Go, that interfaces with the Automatic 1111's API interface.
57/100 healthActive repository
GoMIT
⑂ 32 forks◯ 35 issuesUpdated Apr 27, 2026