Files
HxClaw/go_modules/libsql-client-go/libsql/internal/http/driver.go

12 lines
290 B
Go
Raw Normal View History

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)
}