12 lines
218 B
Go
12 lines
218 B
Go
package sharedaccount
|
|
|
|
import "budget/internal/storage/dao/postgresql"
|
|
|
|
type Database struct {
|
|
*postgresql.DatabasePostgreSQL
|
|
}
|
|
|
|
func NewDatabase(db *postgresql.DatabasePostgreSQL) *Database {
|
|
return &Database{db}
|
|
}
|