12 lines
224 B
Go
12 lines
224 B
Go
package postgres
|
|
|
|
import (
|
|
"git.javil.eu/jacob1123/budgeteer"
|
|
)
|
|
|
|
// Repository represents a PostgreSQL implementation of all ModelServices
|
|
type Repository struct {
|
|
DB *Queries
|
|
IDGenerator budgeteer.IDGenerator
|
|
}
|