mirror of
https://git.swurl.xyz/swirl/link.git
synced 2025-01-15 21:06:33 +00:00
.. | ||
errors.go | ||
go.mod | ||
go.sum | ||
License | ||
migrator.go | ||
README.md | ||
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.