Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ekristen/gorm-libsql
https://github.com/ekristen/gorm-libsql
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/ekristen/gorm-libsql
- Owner: ekristen
- License: mit
- Created: 2023-11-01T19:15:42.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-15T01:55:41.000Z (11 months ago)
- Last Synced: 2025-01-13T07:47:10.919Z (5 days ago)
- Language: Go
- Size: 127 KB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
README
# GORM libsql Driver
**Note:** this is just a copy of the gorm.io/driver/sqlite with a few things renamed and a different library imported
![CI](https://github.com/go-gorm/sqlite/workflows/CI/badge.svg)
## USAGE
```go
import (
"github.com/ekristen/libsql"
"gorm.io/gorm"
)// github.com/libsql/libsql-client-go/libsql
db, err := gorm.Open(libsql.Open("libsql://...."), &gorm.Config{})
```Checkout [https://gorm.io](https://gorm.io) for details.