leaf-library-3/internal/services/stream/provider.go

16 lines
209 B
Go
Raw Permalink Normal View History

2024-12-05 17:44:29 +00:00
package stream
import (
"leafdev.top/Leaf/leaf-library-3/internal/base/conf"
)
type Service struct {
config *conf.Config
}
func NewService(config *conf.Config) *Service {
return &Service{
config,
}
}