mirror of
https://github.com/daeuniverse/dae.git
synced 2025-02-21 20:18:35 +07:00
11 lines
173 B
Go
11 lines
173 B
Go
![]() |
package ws
|
||
|
|
||
|
import (
|
||
|
"github.com/daeuniverse/dae/component/outbound/dialer"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
dialer.FromLinkRegister("ws", NewWs)
|
||
|
dialer.FromLinkRegister("wss", NewWs)
|
||
|
}
|