8000 Add missing sqlite import · cloudflare/cfssl@7c2aa53 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7c2aa53

Browse files
Add missing sqlite import
Ensure that go-sqlite3 is imported so sqlite based databases work properly
1 parent b94e044 commit 7c2aa53

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cmd/multirootca/ca.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import (
1818

1919
_ "github.com/go-sql-driver/mysql" // import to support MySQL
2020
_ "github.com/lib/pq" // import to support Postgres
21+
_ "github.com/mattn/go-sqlite3" // import to support SQLite
2122
)
2223

2324
func parseSigner(root *config.Root) (signer.Signer, error) {

0 commit comments

Comments
 (0)
0