XrayR/cmd/distro/all/all.go
xrayrgoon 974abc9a98
Some checks failed
CodeQL / Analyze (go) (push) Failing after 4m49s
Build and Release / build (386, freebsd) (push) Failing after 8m40s
Build and Release / build (386, linux) (push) Failing after 7m10s
Build and Release / build (386, windows) (push) Failing after 6m49s
Build and Release / build (amd64, darwin) (push) Failing after 7m8s
Build and Release / build (amd64, freebsd) (push) Failing after 7m31s
Build and Release / build (amd64, linux) (push) Failing after 7m20s
Build and Release / build (amd64, openbsd) (push) Failing after 7m4s
Build and Release / build (amd64, windows) (push) Failing after 7m9s
Build and Release / build (arm, 5, linux) (push) Failing after 6m44s
Build and Release / build (arm, 6, linux) (push) Failing after 6m42s
Build and Release / build (arm, 7, freebsd) (push) Failing after 6m32s
Build and Release / build (arm, 7, linux) (push) Failing after 6m43s
Build and Release / build (arm64, android) (push) Failing after 6m59s
Build and Release / build (arm64, darwin) (push) Failing after 6m54s
Build and Release / build (arm64, freebsd) (push) Failing after 6m52s
Build and Release / build (arm64, linux) (push) Failing after 7m5s
Build and Release / build (mips, linux) (push) Failing after 12m35s
Build and Release / build (mips64, linux) (push) Failing after 7m4s
Build and Release / build (mips64le, linux) (push) Failing after 6m39s
Build and Release / build (mipsle, linux) (push) Failing after 11m56s
Build and Release / build (ppc64le, linux) (push) Failing after 6m54s
Build and Release / build (riscv64, linux) (push) Failing after 8m10s
Build and Release / build (s390x, linux) (push) Failing after 6m56s
Close inactive issues / close-issues (push) Successful in 25s
xray-core v25.3.6 and other updates (#748)
2025-03-21 02:07:22 +08:00

75 lines
2.9 KiB
Go

package all
import (
// The following are necessary as they register handlers in their init functions.
_ "github.com/xtls/xray-core/app/proxyman/inbound"
_ "github.com/xtls/xray-core/app/proxyman/outbound"
// Required features. Can't remove unless there is replacements.
// _ "github.com/xtls/xray-core/app/dispatcher"
_ "github.com/XrayR-project/XrayR/app/mydispatcher"
// Default commander and all its services. This is an optional feature.
_ "github.com/xtls/xray-core/app/commander"
_ "github.com/xtls/xray-core/app/log/command"
_ "github.com/xtls/xray-core/app/proxyman/command"
_ "github.com/xtls/xray-core/app/stats/command"
// Other optional features.
_ "github.com/xtls/xray-core/app/dns"
_ "github.com/xtls/xray-core/app/log"
_ "github.com/xtls/xray-core/app/metrics"
_ "github.com/xtls/xray-core/app/policy"
_ "github.com/xtls/xray-core/app/reverse"
_ "github.com/xtls/xray-core/app/router"
_ "github.com/xtls/xray-core/app/stats"
// Inbound and outbound proxies.
_ "github.com/xtls/xray-core/proxy/blackhole"
_ "github.com/xtls/xray-core/proxy/dns"
_ "github.com/xtls/xray-core/proxy/dokodemo"
_ "github.com/xtls/xray-core/proxy/freedom"
_ "github.com/xtls/xray-core/proxy/http"
_ "github.com/xtls/xray-core/proxy/loopback"
_ "github.com/xtls/xray-core/proxy/shadowsocks"
_ "github.com/xtls/xray-core/proxy/shadowsocks_2022"
_ "github.com/xtls/xray-core/proxy/socks"
_ "github.com/xtls/xray-core/proxy/trojan"
_ "github.com/xtls/xray-core/proxy/vless/inbound"
_ "github.com/xtls/xray-core/proxy/vless/outbound"
_ "github.com/xtls/xray-core/proxy/vmess/inbound"
_ "github.com/xtls/xray-core/proxy/vmess/outbound"
_ "github.com/xtls/xray-core/proxy/wireguard"
// Transports
_ "github.com/xtls/xray-core/transport/internet/grpc"
_ "github.com/xtls/xray-core/transport/internet/kcp"
_ "github.com/xtls/xray-core/transport/internet/reality"
_ "github.com/xtls/xray-core/transport/internet/splithttp"
_ "github.com/xtls/xray-core/transport/internet/tcp"
_ "github.com/xtls/xray-core/transport/internet/tls"
_ "github.com/xtls/xray-core/transport/internet/udp"
_ "github.com/xtls/xray-core/transport/internet/websocket"
// Transport headers
_ "github.com/xtls/xray-core/transport/internet/headers/http"
_ "github.com/xtls/xray-core/transport/internet/headers/noop"
_ "github.com/xtls/xray-core/transport/internet/headers/srtp"
_ "github.com/xtls/xray-core/transport/internet/headers/tls"
_ "github.com/xtls/xray-core/transport/internet/headers/utp"
_ "github.com/xtls/xray-core/transport/internet/headers/wechat"
_ "github.com/xtls/xray-core/transport/internet/headers/wireguard"
// JSON & TOML & YAML
_ "github.com/xtls/xray-core/main/json"
_ "github.com/xtls/xray-core/main/toml"
_ "github.com/xtls/xray-core/main/yaml"
// Load config from file or http(s)
_ "github.com/xtls/xray-core/main/confloader/external"
// Commands
_ "github.com/xtls/xray-core/main/commands/all"
)