We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46b40a5 commit 5422453Copy full SHA for 5422453
1 file changed
libsql.go
@@ -424,20 +424,6 @@ type conn struct {
424
nativePtr C.libsql_connection_t
425
}
426
427
-type extension struct {
428
- Library string
429
- Entry string
430
-}
431
-
432
-func (c *conn) loadExtensions(exts []extension) error {
433
- for _, ext := range exts {
434
- if err := c.loadExtension(ext.Library, ext.Entry); err != nil {
435
- return err
436
- }
437
438
- return nil
439
440
441
func (c *conn) LoadExtension(lib string, entry string) error {
442
if err := c.loadExtension(lib, entry); err != nil {
443
return err
0 commit comments