mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-08 14:34:08 +07:00
20 lines
713 B
Go
20 lines
713 B
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) since 2023, v2rayA Organization <team@v2raya.org>
|
|
*/
|
|
|
|
package outbound
|
|
|
|
import (
|
|
_ "github.com/mzz2017/softwind/protocol/shadowsocks"
|
|
_ "github.com/mzz2017/softwind/protocol/trojanc"
|
|
_ "github.com/mzz2017/softwind/protocol/vless"
|
|
_ "github.com/mzz2017/softwind/protocol/vmess"
|
|
_ "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"
|
|
)
|