This commit is contained in:
wagslane
2024-03-07 09:48:38 -07:00
parent 2b337f9f0f
commit 86874e2f9e
171 changed files with 63081 additions and 7300 deletions

View File

@@ -0,0 +1,11 @@
package http
import (
"database/sql/driver"
"github.com/tursodatabase/libsql-client-go/libsql/internal/http/hranaV2"
)
func Connect(url, jwt, host string) driver.Conn {
return hranaV2.Connect(url, jwt, host)
}