Implement Persentance with SQLite3 (#6)

This commit is contained in:
2023-04-01 03:48:01 -04:00
committed by GitHub
parent e1038a15cd
commit a40ec4dd78
9 changed files with 904 additions and 10 deletions

6
persistence/database.go Normal file
View File

@ -0,0 +1,6 @@
package persistence
type Database interface {
GetDiscordMessage(id string) (string, error)
SetDiscordMessage(id string, messageID string) error
}