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

@ -12,10 +12,10 @@ import (
)
type IrcRepo struct {
db *SqliteDB
db *DB
}
func NewIrcRepo(db *SqliteDB) domain.IrcRepo {
func NewIrcRepo(db *DB) domain.IrcRepo {
return &IrcRepo{db: db}
}