⬆️ update sqlite

This commit is contained in:
源文雨
2022-06-10 15:47:47 +08:00
parent 9f748a8119
commit fbeb048c44
15 changed files with 122 additions and 47 deletions

View File

@@ -3,6 +3,7 @@ package funny
import (
"strings"
"time"
"github.com/sirupsen/logrus"
zero "github.com/wdvxdr1123/ZeroBot"
@@ -36,6 +37,11 @@ func init() {
ctx.SendChain(message.Text("ERROR:", err))
return false
}
err = db.Open(time.Hour * 24)
if err != nil {
ctx.SendChain(message.Text("ERROR:", err))
return false
}
err = db.Create("jokes", &joke{})
if err != nil {
ctx.SendChain(message.Text("ERROR:", err))