recommender/internal/service/stream/provider.go

16 lines
211 B
Go
Raw Normal View History

2024-11-07 18:25:15 +00:00
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,
}
}