some fixes; in hub now pushes dev tag

This commit is contained in:
2026-01-28 13:42:04 +03:00
parent 3e6032d6bc
commit 6c47d05e9c
10 changed files with 39 additions and 22 deletions

View File

@@ -1 +1,13 @@
package plugins
import "kurumibot/laniakea"
func RegisterService(bot *laniakea.Bot) {
p := laniakea.NewPlugin("service")
p = p.Payload(generalClose, "general.close")
bot.AddPlugins(p.Build())
}
func generalClose(ctx *laniakea.MsgContext, _ *laniakea.DatabaseContext) {
ctx.CallbackDelete()
}