16 lines
211 B
Go
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,
|
|
}
|
|
}
|