Port over saveable command from Python

This commit is contained in:
Michał Gdula 2025-04-13 17:15:31 +01:00
parent 46e98473d0
commit 5bce2f6898
2 changed files with 112 additions and 0 deletions

View file

@ -5,6 +5,7 @@ import (
"github.com/Fluffy-Bean/lynxie/app"
"github.com/Fluffy-Bean/lynxie/commands/debug"
"github.com/Fluffy-Bean/lynxie/commands/img"
"github.com/Fluffy-Bean/lynxie/commands/porb"
"github.com/Fluffy-Bean/lynxie/commands/tinyfox"
"github.com/bwmarrin/discordgo"
@ -18,6 +19,7 @@ func main() {
})
debug.RegisterDebugCommands(a)
img.RegisterImgCommands(a)
tinyfox.RegisterTinyfoxCommands(a)
porb.RegisterPorbCommands(a)