mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
15 lines
156 B
Go
15 lines
156 B
Go
package embed
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/ncruces/go-sqlite3"
|
|
)
|
|
|
|
//go:embed sqlite3.wasm
|
|
var binary []byte
|
|
|
|
func init() {
|
|
sqlite3.Binary = binary
|
|
}
|