add reminder feature

This commit is contained in:
Watn3y 2023-03-19 22:46:00 +01:00
parent 81f0970e36
commit cfc48bd2cf
5 changed files with 233 additions and 1 deletions

View file

@ -8,6 +8,7 @@ import (
"time"
"watn3y/bloaterbotv3/botIO"
"watn3y/bloaterbotv3/commands/gaypoints"
"watn3y/bloaterbotv3/commands/notify"
"watn3y/bloaterbotv3/config"
)
@ -26,6 +27,8 @@ func Commands(update tgbotapi.Update, bot *tgbotapi.BotAPI) {
gaypoints.SetGP(update, bot)
case "subtractgp":
gaypoints.SetGP(update, bot)
case "remindme":
notify.Reminder(update, bot)
}
}