From ce77e1e8e4b785b84efa072aeff024b854f09dd4 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Fri, 7 Aug 2020 14:05:34 +0300 Subject: [PATCH] gif --- mvc/mvc-grpc.md | 2 +- mvc/mvc-mvc.md | 2 +- responses/response-stream.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mvc/mvc-grpc.md b/mvc/mvc-grpc.md index 3bb1ba7..42823e9 100644 --- a/mvc/mvc-grpc.md +++ b/mvc/mvc-grpc.md @@ -6,7 +6,7 @@ Iris and gRPC integration lives inside the [mvc](https://github.com/kataras/iris Have you ever have difficulties converting your app or parts of it from HTTP to gGRPC or did you ever wish you had decent HTTP framework support as well for your gRPC services? Now, with Iris you have the best of two worlds. Without change a bit of your existing gRPC services code, you can register them as Iris HTTP routes through a Controller (your service struct value). -[[../_assets/grpc-compatible-question.png]] +![_assets/grpc-compatible-question.png](https://raw.githubusercontent.com/wiki/kataras/iris/_assets/grpc-compatible-question.png) > Learn more about our conversation at: [https://github.com/kataras/iris/issues/1449\#issuecomment-623260695](https://github.com/kataras/iris/issues/1449#issuecomment-623260695) diff --git a/mvc/mvc-mvc.md b/mvc/mvc-mvc.md index 8c20d82..0d09f52 100644 --- a/mvc/mvc-mvc.md +++ b/mvc/mvc-mvc.md @@ -1,6 +1,6 @@ # MVC -[[../_assets/web_mvc_diagram.png]] +![_assets/web_mvc_diagram.png](https://raw.githubusercontent.com/wiki/kataras/iris/_assets//web_mvc_diagram.png) Using Iris MVC for code reuse. diff --git a/responses/response-stream.md b/responses/response-stream.md index 262886c..fea8f85 100644 --- a/responses/response-stream.md +++ b/responses/response-stream.md @@ -117,6 +117,6 @@ func handler(ctx iris.Context) { **Result** -![](../assets/iris-stream-writer.gif) +![](https://raw.githubusercontent.com/wiki/kataras/iris/iris-stream-writer.gif) That's all. As you've noticed, the client receives messages while loading. Check the next chapter (Server-Sent Events) to see an alternative way of sending messages to the client with connection-alive and loaded page.