mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-08 06:23:16 +07:00
a6382423a4
* fix: bad ipversion selection caused by #251 * chore: upgrade softwind
27 lines
1.2 KiB
Go
27 lines
1.2 KiB
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) 2022-2023, daeuniverse Organization <dae@v2raya.org>
|
|
*/
|
|
|
|
package outbound
|
|
|
|
import (
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/http"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/juicity"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/shadowsocks"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/shadowsocksr"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/socks"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/trojan"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/tuic"
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/v2ray"
|
|
_ "github.com/daeuniverse/dae/component/outbound/transport/simpleobfs"
|
|
_ "github.com/daeuniverse/dae/component/outbound/transport/tls"
|
|
_ "github.com/daeuniverse/dae/component/outbound/transport/ws"
|
|
_ "github.com/daeuniverse/softwind/protocol/juicity"
|
|
_ "github.com/daeuniverse/softwind/protocol/shadowsocks"
|
|
_ "github.com/daeuniverse/softwind/protocol/trojanc"
|
|
_ "github.com/daeuniverse/softwind/protocol/tuic"
|
|
_ "github.com/daeuniverse/softwind/protocol/vless"
|
|
_ "github.com/daeuniverse/softwind/protocol/vmess"
|
|
)
|