mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-25 19:17:10 +08:00
Conflicts: Gopkg.lock pkg/appsrv/appsrv.go pkg/cloudcommon/options.go pkg/compute/models/hosts.go pkg/compute/models/quotas.go pkg/compute/service/service.go pkg/mcclient/mcclient.go
22 lines
395 B
Go
22 lines
395 B
Go
// +build !cgo
|
|
|
|
package sqlite3
|
|
|
|
import (
|
|
"database/sql"
|
|
"database/sql/driver"
|
|
"errors"
|
|
)
|
|
|
|
func init() {
|
|
sql.Register("sqlite3", &SQLiteDriverMock{})
|
|
}
|
|
|
|
type SQLiteDriverMock struct{}
|
|
|
|
var errorMsg = errors.New("Binary was compiled with 'CGO_ENABLED=0', go-sqlite3 requires cgo to work. This is a stub")
|
|
|
|
func (SQLiteDriverMock) Open(s string) (driver.Conn, error) {
|
|
return nil, errorMsg
|
|
}
|