Added necessary dependency for SQLite

This commit is contained in:
David Allen 2024-03-05 20:42:10 -07:00
parent 98521f0b04
commit 082c891ac4
No known key found for this signature in database
GPG key ID: 1D2A29322FBB6FCB

View file

@ -5,6 +5,7 @@ import (
"fmt"
"github.com/jmoiron/sqlx"
_ "github.com/mattn/go-sqlite3"
)
func CreateIdentityProvidersIfNotExists(path string) (*sqlx.DB, error) {