package main import ( "flag" "fmt" "os" "os/signal" "syscall" "github.com/bwmarrin/discordgo" ) func init() { flag.StringVar(&token, "t", "", "Bot Token") flag.Parse() } var token string func main() { fmt.Println("Initializing.......") // Create a new Discord session using the provided bot token. dg, err := discordgo.New("Bot " + token) if err != nil { fmt.Println("error creating Discord session,", err) return } // Register the messageCreate func as a callback for MessageCreate events. dg.AddHandler(messageCreate) // In this example, we only care about receiving message events. dg.Identify.Intents = discordgo.IntentsGuildMessages // Open a websocket connection to Discord and begin listening. err = dg.Open() if err != nil { fmt.Println("error opening connection,", err) return } // Wait here until CTRL-C or other term signal is received. fmt.Println("Bot is now running. Press CTRL-C to exit.") sc := make(chan os.Signal, 1) signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt) <-sc // Cleanly close down the Discord session. dg.Close() }