Skip to content

Commit

Permalink
Add missing sqlite import
Browse files Browse the repository at this point in the history
Ensure that go-sqlite3 is imported so sqlite based databases work properly
  • Loading branch information
andrewheberle authored Jan 29, 2019
1 parent b94e044 commit 7c2aa53
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/multirootca/ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (

_ "github.com/go-sql-driver/mysql" // import to support MySQL
_ "github.com/lib/pq" // import to support Postgres
_ "github.com/mattn/go-sqlite3" // import to support SQLite
)

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

0 comments on commit 7c2aa53

Please sign in to comment.