Files
sing-box-extended-mirror/include/ccm.go
T

13 lines
249 B
Go
Raw Normal View History

2025-10-21 10:34:05 +08:00
//go:build with_ccm && (!darwin || cgo)
package include
import (
"github.com/sagernet/sing-box/adapter/service"
"github.com/sagernet/sing-box/service/ccm"
)
func registerCCMService(registry *service.Registry) {
ccm.RegisterService(registry)
}