2021-06-16 06:46:53 +08:00
|
|
|
// +build linux,freebsd,darwin
|
|
|
|
|
// +build !mips !mips64
|
2021-06-04 12:49:55 +08:00
|
|
|
|
|
|
|
|
package sql
|
|
|
|
|
|
|
|
|
|
// The modernc.org sqlite driver isn't supported on all
|
|
|
|
|
// platforms. Register it with build constraints to prevent build
|
|
|
|
|
// failures on unsupported platforms.
|
|
|
|
|
import (
|
|
|
|
|
_ "modernc.org/sqlite" // Register sqlite sql driver
|
|
|
|
|
)
|