12 lines
172 B
Go
12 lines
172 B
Go
package profileRepository
|
|
|
|
type repository struct {
|
|
pgDB pgDBInstance
|
|
}
|
|
|
|
func New(pgDBInstance pgDBInstance) *repository {
|
|
return &repository{
|
|
pgDB: pgDBInstance,
|
|
}
|
|
}
|