mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 20:31:10 +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"
|
||
|
)
|