Documentation ¶
Overview ¶
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.
Directories ¶
Path | Synopsis |
---|---|
_example
|
|
advanced_bot
Package main demonstrates an advanced bot that uses the bot router library to make commands.
|
Package main demonstrates an advanced bot that uses the bot router library to make commands. |
simple
Package main demonstrates a bare simple bot without a state cache.
|
Package main demonstrates a bare simple bot without a state cache. |
undeleter
Package main demonstrates the PreHandler API of the State.
|
Package main demonstrates the PreHandler API of the State. |
Package api provides an interface to interact with the Discord REST API.
|
Package api provides an interface to interact with the Discord REST API. |
webhook
Package webhook provides means to interact with webhooks directly and not through the bot API.
|
Package webhook provides means to interact with webhooks directly and not through the bot API. |
extras/infer
Package infer implements reflect functions that package bot uses.
|
Package infer implements reflect functions that package bot uses. |
Package discord provides common structures that the whole repository uses.
|
Package discord provides common structures that the whole repository uses. |
Package gateway handles the Discord gateway (or Websocket) connection, its events, and everything related to it.
|
Package gateway handles the Discord gateway (or Websocket) connection, its events, and everything related to it. |
internal
|
|
handleloop
Package handleloop provides clean abstractions to handle listening to channels and passing them onto event handlers.
|
Package handleloop provides clean abstractions to handle listening to channels and passing them onto event handlers. |
heart
Package heart implements a general purpose pacemaker.
|
Package heart implements a general purpose pacemaker. |
moreatomic/syncmod
Package syncmod contains a clone of package sync's map.go file with unused methods removed and some tweaks with LoadOrStore.
|
Package syncmod contains a clone of package sync's map.go file with unused methods removed and some tweaks with LoadOrStore. |
zlib
Package zlib provides abstractions on top of compress/zlib to work with Discord's method of compressing websocket packets.
|
Package zlib provides abstractions on top of compress/zlib to work with Discord's method of compressing websocket packets. |
Package session abstracts around the REST API and the Gateway, managing both at once.
|
Package session abstracts around the REST API and the Gateway, managing both at once. |
Package state provides interfaces for a local or remote state, as well as abstractions around the REST API and Gateway events.
|
Package state provides interfaces for a local or remote state, as well as abstractions around the REST API and Gateway events. |
store
Package store contains interfaces of the state's storage and its implementations.
|
Package store contains interfaces of the state's storage and its implementations. |
store/defaultstore
Package defaultstore provides thread-safe store implementations that store state values in memory.
|
Package defaultstore provides thread-safe store implementations that store state values in memory. |
utils
|
|
handler
Package handler handles incoming Gateway events.
|
Package handler handles incoming Gateway events. |
httputil
Package httputil provides abstractions around the common needs of HTTP.
|
Package httputil provides abstractions around the common needs of HTTP. |
httputil/httpdriver
Package httpdriver provides interfaces and implementations of a simple HTTP client.
|
Package httpdriver provides interfaces and implementations of a simple HTTP client. |
json
Package json allows for different implementations of JSON serializing, as well as extra optional types needed.
|
Package json allows for different implementations of JSON serializing, as well as extra optional types needed. |
json/option
Package option provides the ability to create omittable primitives.
|
Package option provides the ability to create omittable primitives. |
wsutil
Package wsutil provides abstractions around the Websocket, including rate limits.
|
Package wsutil provides abstractions around the Websocket, including rate limits. |
Package voice handles the Discord voice gateway and UDP connections.
|
Package voice handles the Discord voice gateway and UDP connections. |