mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
Add v2ray stats api
This commit is contained in:
parent
c7a485815c
commit
1b44faed17
32 changed files with 1408 additions and 64 deletions
17
include/v2rayapi_stub.go
Normal file
17
include/v2rayapi_stub.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
//go:build !with_v2ray_api
|
||||
|
||||
package include
|
||||
|
||||
import (
|
||||
"github.com/sagernet/sing-box/adapter"
|
||||
"github.com/sagernet/sing-box/experimental"
|
||||
"github.com/sagernet/sing-box/log"
|
||||
"github.com/sagernet/sing-box/option"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
)
|
||||
|
||||
func init() {
|
||||
experimental.RegisterV2RayServerConstructor(func(logger log.Logger, options option.V2RayAPIOptions) (adapter.V2RayServer, error) {
|
||||
return nil, E.New(`v2ray api is not included in this build, rebuild with -tags with_v2ray_api`)
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue