From de37b58dd398ee2bfc179b6b7a882e7abcba0706 Mon Sep 17 00:00:00 2001 From: "diamondburned (Forefront)" Date: Sun, 19 Jan 2020 19:45:11 -0800 Subject: [PATCH] Added Advanced Bot into README --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index e563321..1b41b70 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,15 @@ This example demonstrates the PreHandler feature of this library. PreHandler calls all handlers that are registered (separately from session), calling them before the state is updated. +### [Advanced Bot](https://github.com/diamondburned/arikawa/tree/master/_example/advanced_bot) + +A pretty complicated example demonstrating the reflect-based command router +that's built-in. The router turns exported struct methods into commands, its +arguments into command arguments, and more. + +The library has a pretty detailed documentation available in [GoDoc +Reference](https://godoc.org/github.com/diamondburned/arikawa/bot). + ## Comparison: Why not discordgo? Discordgo is great. It's the first library that I used when I was learning Go.