relayer, second attempt, now much better.

This commit is contained in:
fiatjaf
2023-08-10 14:32:11 -03:00
parent e4fe82dd7f
commit 8968982b9a
93 changed files with 2212 additions and 2674 deletions

View File

@@ -0,0 +1,10 @@
package sqlite3
import (
"github.com/jmoiron/sqlx"
)
type SQLite3Backend struct {
*sqlx.DB
DatabaseURL string
}