mirror of
https://github.com/kataras/iris.git
synced 2025-02-09 02:34:55 +01:00
wss example
Former-commit-id: fb1aad51214981533565129b784e6ab88c6a7a1a
This commit is contained in:
parent
85fdf39472
commit
e52a062ff5
|
@ -56,7 +56,7 @@ func main() {
|
||||||
// send our custom javascript source file before client really asks for that
|
// send our custom javascript source file before client really asks for that
|
||||||
// using the new go v1.8's HTTP/2 Push.
|
// using the new go v1.8's HTTP/2 Push.
|
||||||
// Note that you have to listen using ListenTLS/ListenLETSENCRYPT in order this to work.
|
// Note that you have to listen using ListenTLS/ListenLETSENCRYPT in order this to work.
|
||||||
if err := ctx.ResponseWriter.Push("/js/chat.js", nil); err != nil {
|
if err := ctx.Push("/js/chat.js", nil); err != nil {
|
||||||
app.Log(iris.DevMode, err.Error())
|
app.Log(iris.DevMode, err.Error())
|
||||||
}
|
}
|
||||||
ctx.Render("client.html", clientPage{"Client Page", ctx.Host()})
|
ctx.Render("client.html", clientPage{"Client Page", ctx.Host()})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user