recommender/internal/service/stream/provider.go
2024-11-08 02:25:15 +08:00

16 lines
211 B
Go

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,
}
}