mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
This commit adds the boilerplate code we will need in order to start using SQL backed stores (namely sqlite and postgres) for our DB backend. NOTE that this has been copied from the taproot-assets repo.
9 lines
103 B
Go
9 lines
103 B
Go
package db
|
|
|
|
import (
|
|
"embed"
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed sqlc/migrations/*.*.sql
|
|
var sqlSchemas embed.FS
|