Add Command Functionality to Discord Package & Implement Feedback Webhooks (!3)

Co-authored-by: Layla <layla@layla.gg>
Reviewed-on: https://gitea.sumulayla.synology.me/layla/birdbot/pulls/3
This commit was merged in pull request #3.
This commit is contained in:
2023-06-15 21:25:46 -04:00
parent 204803cd0b
commit 7b0c8351a8
10 changed files with 324 additions and 20 deletions

20
go.mod
View File

@@ -3,26 +3,26 @@ module github.com/yeslayla/birdbot
go 1.20
require (
github.com/bwmarrin/discordgo v0.26.1
github.com/ilyakaznacheev/cleanenv v1.4.0
github.com/stretchr/testify v1.8.1
github.com/bwmarrin/discordgo v0.27.1
github.com/ilyakaznacheev/cleanenv v1.4.2
github.com/mattn/go-mastodon v0.0.6
github.com/mattn/go-sqlite3 v1.14.17
github.com/rubenv/sql-migrate v1.4.0
github.com/stretchr/testify v1.8.4
)
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/joho/godotenv v1.4.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/magefile/mage v1.14.0 // indirect
github.com/mattn/go-mastodon v0.0.5 // indirect
github.com/mattn/go-sqlite3 v1.14.16 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rubenv/sql-migrate v1.4.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect
golang.org/x/crypto v0.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/crypto v0.10.0 // indirect
golang.org/x/sys v0.9.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
)