Skip to content

Commit

Permalink
⬆️ upgrade sqlite driver and telebot
Browse files Browse the repository at this point in the history
  • Loading branch information
iyear committed Dec 9, 2021
1 parent b460172 commit d587713
Show file tree
Hide file tree
Showing 4 changed files with 159 additions and 35 deletions.
2 changes: 1 addition & 1 deletion bots/bots.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func BotStart() {
zap.S().Errorw("failed to create bot", "error", err)
return
}
fmt.Println("Bot: " + strconv.Itoa(bot.Me.ID) + " " + bot.Me.Username)
fmt.Println("Bot: " + strconv.FormatInt(bot.Me.ID, 10) + " " + bot.Me.Username)

MakeHandle()
fmt.Println("Bot Start")
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ module github.com/iyear/E5SubBot
go 1.16

require (
github.com/cloudquery/sqlite v1.0.1
github.com/fsnotify/fsnotify v1.4.7
github.com/guonaihong/gout v0.1.12
github.com/iyear/sqlite v1.0.2
github.com/pkg/errors v0.9.1
github.com/robfig/cron/v3 v3.0.0
github.com/spf13/viper v1.6.2
github.com/tidwall/gjson v1.9.3
go.uber.org/zap v1.10.0
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/tucnak/telebot.v2 v2.0.0-20200328014118-dd123e949ee1
gopkg.in/tucnak/telebot.v2 v2.5.0
gorm.io/driver/mysql v1.1.2
gorm.io/gorm v1.21.12
gorm.io/gorm v1.22.3
)
Loading

0 comments on commit d587713

Please sign in to comment.