mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-11 17:47:20 +10:00
13 lines
229 B
Go
13 lines
229 B
Go
//go:build with_ocm
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/adapter/service"
|
|
"github.com/sagernet/sing-box/service/ocm"
|
|
)
|
|
|
|
func registerOCMService(registry *service.Registry) {
|
|
ocm.RegisterService(registry)
|
|
}
|