mirror of
https://github.com/daeuniverse/dae.git
synced 2025-07-13 09:18:55 +07:00

* feat/refactor: support the chains node * docs: update example.dae * fix: order * fix: http --------- Co-authored-by: dae-bot[bot] <136105375+dae-bot[bot]@users.noreply.github.com>
9 lines
173 B
Go
9 lines
173 B
Go
package tls
|
|
|
|
import "github.com/daeuniverse/dae/component/outbound/dialer"
|
|
|
|
func init() {
|
|
dialer.FromLinkRegister("tls", NewTls)
|
|
dialer.FromLinkRegister("utls", NewTls)
|
|
}
|