mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-10-31 20:14:21 +00:00
41 lines
1.5 KiB
Go
41 lines
1.5 KiB
Go
// Package arikawa contains a set of modular packages that allows you to make a
|
|
// Discord bot or any type of session (OAuth unsupported).
|
|
//
|
|
// Session
|
|
//
|
|
// Package session is the most simple abstraction, which combines the API
|
|
// package and the Gateway websocket package together into one. This could be
|
|
// used for minimal bots that only use gateway events and such.
|
|
//
|
|
// State
|
|
//
|
|
// Package state abstracts on top of session and provides a local cache of API
|
|
// calls and events. Bots that either don't need a command router or already has
|
|
// its own should use this package.
|
|
//
|
|
// Bot
|
|
//
|
|
// Package bot abstracts on top of state and provides a command router based on
|
|
// Go code. This is similar to discord.py's API, only it's Go and there's no
|
|
// optional arguments (yet, although it could be worked around). Most bots are
|
|
// recommended to use this package, as it's the easiest way to make a bot.
|
|
//
|
|
// Voice
|
|
//
|
|
// Package voice provides an abstraction on top of State and adds voice support.
|
|
// This allows bots to join voice channels and talk. The package uses an
|
|
// io.Writer approach rather than a channel, contrary to other Discord
|
|
// libraries.
|
|
package arikawa
|
|
|
|
import (
|
|
// Packages that most should use.
|
|
_ "github.com/diamondburned/arikawa/v3/session"
|
|
_ "github.com/diamondburned/arikawa/v3/state"
|
|
_ "github.com/diamondburned/arikawa/v3/voice"
|
|
|
|
// Low level packages.
|
|
_ "github.com/diamondburned/arikawa/v3/api"
|
|
_ "github.com/diamondburned/arikawa/v3/gateway"
|
|
)
|