Files
dae/component/outbound/outbound.go

20 lines
713 B
Go
Raw Normal View History

2023-01-23 19:54:21 +08:00
/*
* SPDX-License-Identifier: AGPL-3.0-only
2023-01-28 13:56:06 +08:00
* Copyright (c) since 2023, v2rayA Organization <team@v2raya.org>
2023-01-23 19:54:21 +08:00
*/
package outbound
import (
2023-01-27 02:10:27 +08: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 20:01:24 +08: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 19:54:21 +08:00
)