mirror of
https://dev.sigpipe.me/dashie/git.txt
synced 2025-10-06 06:02:41 +02:00
12 lines
117 B
Go
12 lines
117 B
Go
// +build sqlite
|
|
|
|
package models
|
|
|
|
import (
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
func init() {
|
|
EnableSQLite3 = true
|
|
}
|