17 lines
253 B
Go
17 lines
253 B
Go
|
|
package repositories
|
||
|
|
|
||
|
|
import (
|
||
|
|
gm "db_service/gorm_models"
|
||
|
|
"gorm.io/gorm"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Importer struct {
|
||
|
|
mainCategories []gm.Category
|
||
|
|
baza *gorm.DB
|
||
|
|
families []gm.AttributeFamily
|
||
|
|
}
|
||
|
|
|
||
|
|
func ImporterInstance() Importer {
|
||
|
|
return Importer{}
|
||
|
|
}
|