api-platform/internal/service/stream/provider.go

16 lines
207 B
Go
Raw Normal View History

2024-11-21 11:25:32 +00:00
package stream
import (
2024-11-22 17:55:15 +00:00
"leafdev.top/Leaf/api-platform/internal/base/conf"
2024-11-21 11:25:32 +00:00
)
type Service struct {
config *conf.Config
}
func NewService(config *conf.Config) *Service {
return &Service{
config,
}
}