1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

refactor: replace sqlite with pure go implementation

This commit is contained in:
Ferdinand Mütsch
2022-09-08 21:13:13 +02:00
parent e399af1f1f
commit dd8658e33e
7 changed files with 71 additions and 60 deletions

View File

@@ -2,9 +2,9 @@ package config
import (
"fmt"
"github.com/glebarez/sqlite"
"gorm.io/driver/mysql"
"gorm.io/driver/postgres"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)