Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
indes committed Oct 7, 2022
1 parent 325b413 commit cac20f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/config/autoload.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func init() {
if err != nil {
err := os.MkdirAll(dir, os.ModeDir)
if err != nil {
log.Fatal("mkdir failed![%v]\n", err)
log.Fatalf("mkdir failed![%v]\n", err)
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions internal/core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ import (
"sync"
"time"

"github.com/mmcdole/gofeed"
"gorm.io/driver/mysql"
"gorm.io/driver/sqlite"
"gorm.io/gorm"

"github.com/mmcdole/gofeed"

"github.com/indes/flowerss-bot/internal/config"
"github.com/indes/flowerss-bot/internal/feed"
"github.com/indes/flowerss-bot/internal/log"
Expand Down

0 comments on commit cac20f4

Please sign in to comment.