2023-01-23 18:54:21 +07:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2023-03-14 14:01:55 +07:00
|
|
|
* Copyright (c) 2022-2023, daeuniverse Organization <dae@v2raya.org>
|
2023-01-23 18:54:21 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
2023-03-14 14:01:55 +07:00
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/http"
|
2023-07-29 22:41:40 +07:00
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/juicity"
|
2023-03-14 14:01:55 +07:00
|
|
|
_ "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"
|
2023-07-08 21:07:32 +07:00
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/tuic"
|
2023-03-14 14:01:55 +07:00
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/dialer/v2ray"
|
2023-07-23 19:36:57 +07:00
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/transport/simpleobfs"
|
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/transport/tls"
|
|
|
|
_ "github.com/daeuniverse/dae/component/outbound/transport/ws"
|
2023-08-05 17:18:21 +07:00
|
|
|
_ "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"
|
2023-01-23 18:54:21 +07:00
|
|
|
)
|