mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 00:21:30 +00:00
19 lines
304 B
Go
19 lines
304 B
Go
|
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)
|
||
|
}
|