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, } }