mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-08-04 04:45:16 +03:00
13 lines
249 B
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)
|
|
}
|