all.go 955 B

1234567891011121314151617181920212223242526272829
  1. package core
  2. import (
  3. // The following are necessary as they register handlers in their init functions.
  4. _ "v2ray.com/core/app/dispatcher/impl"
  5. _ "v2ray.com/core/app/dns/server"
  6. _ "v2ray.com/core/app/proxy"
  7. _ "v2ray.com/core/app/router"
  8. _ "v2ray.com/core/proxy/blackhole"
  9. _ "v2ray.com/core/proxy/dokodemo"
  10. _ "v2ray.com/core/proxy/freedom"
  11. _ "v2ray.com/core/proxy/http"
  12. _ "v2ray.com/core/proxy/shadowsocks"
  13. _ "v2ray.com/core/proxy/socks"
  14. _ "v2ray.com/core/proxy/vmess/inbound"
  15. _ "v2ray.com/core/proxy/vmess/outbound"
  16. _ "v2ray.com/core/transport/internet/kcp"
  17. _ "v2ray.com/core/transport/internet/tcp"
  18. _ "v2ray.com/core/transport/internet/tls"
  19. _ "v2ray.com/core/transport/internet/udp"
  20. _ "v2ray.com/core/transport/internet/ws"
  21. _ "v2ray.com/core/transport/internet/headers/http"
  22. _ "v2ray.com/core/transport/internet/headers/noop"
  23. _ "v2ray.com/core/transport/internet/headers/srtp"
  24. _ "v2ray.com/core/transport/internet/headers/utp"
  25. )