sing-box/experimental/deprecated/manager.go

19 lines
304 B
Go
Raw Normal View History

2024-10-18 01:58:03 +00:00
package deprecated
import (
"context"
"github.com/sagernet/sing/service"
)
type Manager interface {
ReportDeprecated(feature Note)
}
func Report(ctx context.Context, feature Note) {
manager := service.FromContext[Manager](ctx)
if manager == nil {
return
}
manager.ReportDeprecated(feature)
}