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

16 lines
189 B
Go
Raw Normal View History

2024-11-21 11:25:32 +00:00
package stream
import (
"go-template/internal/base/conf"
)
type Service struct {
config *conf.Config
}
func NewService(config *conf.Config) *Service {
return &Service{
config,
}
}