mirror of
https://github.com/harness/drone.git
synced 2025-05-01 13:11:27 +00:00
10 lines
137 B
Go
10 lines
137 B
Go
// +build cgo
|
|
|
|
package datastore
|
|
|
|
import (
|
|
_ "github.com/go-sql-driver/mysql"
|
|
_ "github.com/lib/pq"
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|