12 lines
290 B
Go
12 lines
290 B
Go
package http
|
|
|
|
import (
|
|
"database/sql/driver"
|
|
|
|
"github.com/tursodatabase/libsql-client-go/libsql/internal/http/hranaV2"
|
|
)
|
|
|
|
func Connect(url, jwt, host string, schemaDb bool, remoteEncryptionKey string) driver.Conn {
|
|
return hranaV2.Connect(url, jwt, host, schemaDb, remoteEncryptionKey)
|
|
}
|