10 lines
190 B
Go
10 lines
190 B
Go
|
package socketio
|
||
|
|
||
|
import (
|
||
|
gosocketio "forge.cadoles.com/Pyxis/golang-socketio"
|
||
|
)
|
||
|
|
||
|
func Endpoint(host string, port int, secure bool) string {
|
||
|
return gosocketio.GetUrl(host, port, false)
|
||
|
}
|