package stream import ( "leafdev.top/Ecosystem/recommender/internal/base/conf" ) type Service struct { config *conf.Config } func NewService(config *conf.Config) *Service { return &Service{ config, } }