feat: wip postgres support

This commit is contained in:
Ludvig Lundgren 2022-03-27 03:12:00 +02:00
parent ffa2447c59
commit cc0c071cce
16 changed files with 362 additions and 211 deletions

View file

@ -8,10 +8,10 @@ import (
)
type IndexerRepo struct {
db *SqliteDB
db *DB
}
func NewIndexerRepo(db *SqliteDB) domain.IndexerRepo {
func NewIndexerRepo(db *DB) domain.IndexerRepo {
return &IndexerRepo{
db: db,
}