mirror of https://github.com/perkeep/perkeep.git
12 lines
144 B
Go
12 lines
144 B
Go
|
// +build with_sqlite
|
||
|
|
||
|
package sqlite
|
||
|
|
||
|
import (
|
||
|
_ "camlistore.org/third_party/github.com/mattn/go-sqlite3"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
compiled = true
|
||
|
}
|