mirror of
https://git.swurl.xyz/swirl/link.git
synced 2023-11-08 10:44:52 +02:00
054feab897 | ||
---|---|---|
.. | ||
License | ||
README.md | ||
errors.go | ||
go.mod | ||
go.sum | ||
migrator.go | ||
sqlite.go |
GORM Sqlite Driver
USAGE
import (
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
// github.com/mattn/go-sqlite3
db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{})
Checkout https://gorm.io for details.