repositorypackage
0.0.0-20221023063957-91794536c9a6
Repository: https://github.com/joshuadoes/guildrone.git
Documentation: pkg.go.dev
# README
GuilDrone
This is a Guilded chat library based on discordgo by bwmarrin.
This is basically bwmarrin's code, so please leave all thanks to him.
Getting Started
Installing
This assumes you already have a working Go environment, if not please see this page first.
go get
will always pull the latest tagged release from the master branch.
go get github.com/FlameInTheDark/guildrone
Usage
Import the package into your project.
import "github.com/FlameInTheDark/guildrone"
Construct a new Guilded client which can be used to access the variety of Guilded API functions and to set callback functions for Guilded events.
guilded, err := guildrone.New("authentication token")
See Documentation and Examples below for more detailed information.
- GuilDrone Examples - A collection of example programs written with GuilDrone