Add claude code multiplexer service

This commit is contained in:
世界
2025-10-21 10:34:05 +08:00
parent 3a267e1557
commit 31dcdc4f14
30 changed files with 1807 additions and 369 deletions

12
include/ccm.go Normal file
View File

@@ -0,0 +1,12 @@
//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)
}