api-platform/internal/service/stream/provider.go
2024-11-23 01:55:15 +08:00

16 lines
207 B
Go

package stream
import (
"leafdev.top/Leaf/api-platform/internal/base/conf"
)
type Service struct {
config *conf.Config
}
func NewService(config *conf.Config) *Service {
return &Service{
config,
}
}