api-platform/internal/service/stream/provider.go
2024-11-21 19:25:32 +08:00

16 lines
189 B
Go

package stream
import (
"go-template/internal/base/conf"
)
type Service struct {
config *conf.Config
}
func NewService(config *conf.Config) *Service {
return &Service{
config,
}
}