Files
sing-box-extended/include/profiler.go

13 lines
249 B
Go

//go:build with_profiler
package include
import (
"github.com/sagernet/sing-box/adapter/service"
"github.com/sagernet/sing-box/service/profiler"
)
func registerProfilerService(registry *service.Registry) {
profiler.RegisterService(registry)
}