├── README.md ├── docs ├── HandlerService.md ├── LoggerService.md └── StatsService.md ├── examples ├── addInbound.go ├── addInbound_test.go ├── alterInbound.go ├── alterInbound_test.go ├── getSystemStats.go ├── getSystemStats_test.go ├── init.go ├── queryTraffic.go ├── queryTraffic_test.go ├── removeInbound.go ├── removeInbound_test.go ├── restartLogger.go ├── restartLogger_test.go └── structures.go └── go.mod /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/README.md -------------------------------------------------------------------------------- /docs/HandlerService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/docs/HandlerService.md -------------------------------------------------------------------------------- /docs/LoggerService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/docs/LoggerService.md -------------------------------------------------------------------------------- /docs/StatsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/docs/StatsService.md -------------------------------------------------------------------------------- /examples/addInbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/addInbound.go -------------------------------------------------------------------------------- /examples/addInbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/addInbound_test.go -------------------------------------------------------------------------------- /examples/alterInbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/alterInbound.go -------------------------------------------------------------------------------- /examples/alterInbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/alterInbound_test.go -------------------------------------------------------------------------------- /examples/getSystemStats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/getSystemStats.go -------------------------------------------------------------------------------- /examples/getSystemStats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/getSystemStats_test.go -------------------------------------------------------------------------------- /examples/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/init.go -------------------------------------------------------------------------------- /examples/queryTraffic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/queryTraffic.go -------------------------------------------------------------------------------- /examples/queryTraffic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/queryTraffic_test.go -------------------------------------------------------------------------------- /examples/removeInbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/removeInbound.go -------------------------------------------------------------------------------- /examples/removeInbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/removeInbound_test.go -------------------------------------------------------------------------------- /examples/restartLogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/restartLogger.go -------------------------------------------------------------------------------- /examples/restartLogger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/restartLogger_test.go -------------------------------------------------------------------------------- /examples/structures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/examples/structures.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossfw/Xray-API-documents/HEAD/go.mod --------------------------------------------------------------------------------