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

10
commands/notify/types.go Normal file
View file

@ -0,0 +1,10 @@
package notify
type reminderConfig struct {
updateID int
notifyTime int64
chatID int64
userID int64
messageToReplyToID int
reminderText string
}