package warehousesrv import "Cold_Logistic/internal/server/infra/dao" type WarehouseService struct { store *dao.DataStore } func NewWarehouseService(store *dao.DataStore) *WarehouseService { return &WarehouseService{store: store} }