2023-01-23 18:54:21 +07:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2023-01-28 12:56:06 +07:00
|
|
|
* Copyright (c) since 2023, v2rayA Organization <team@v2raya.org>
|
2023-01-23 18:54:21 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
2023-01-27 01:10:27 +07:00
|
|
|
_ "github.com/mzz2017/softwind/protocol/shadowsocks"
|
|
|
|
_ "github.com/mzz2017/softwind/protocol/trojanc"
|
|
|
|
_ "github.com/mzz2017/softwind/protocol/vless"
|
|
|
|
_ "github.com/mzz2017/softwind/protocol/vmess"
|
2023-01-23 19:01:24 +07:00
|
|
|
_ "github.com/v2rayA/dae/component/outbound/dialer/http"
|
|
|
|
_ "github.com/v2rayA/dae/component/outbound/dialer/shadowsocks"
|
|
|
|
_ "github.com/v2rayA/dae/component/outbound/dialer/shadowsocksr"
|
|
|
|
_ "github.com/v2rayA/dae/component/outbound/dialer/socks"
|
|
|
|
_ "github.com/v2rayA/dae/component/outbound/dialer/trojan"
|
|
|
|
_ "github.com/v2rayA/dae/component/outbound/dialer/v2ray"
|
2023-01-23 18:54:21 +07:00
|
|
|
)
|