From 92dc8446166045c085434552e7c059e58d9ee6e1 Mon Sep 17 00:00:00 2001 From: Olli Vanhapiha Date: Fri, 9 Jun 2023 23:27:39 +0300 Subject: [PATCH] Update README.md Make streaming API a must have for Backend assignment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4411cc2..08408f2 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Build a chat backend in which users can join the *lobby chat*, receive list of e - Use Golang - Service should be horizontally scalable and it needs to be runnable on multiple instances with different users connecting to different processes (tip: you can for example use something like Nats or Redis for the service to service communication) -- Expose an interface usable from a modern browser (these could be WebSockets, REST or if you are feeling wild even WebTransport) +- Expose an interface usable from a modern browser where clients can receive real time updates (these could be WebSockets, REST or if you are feeling wild even WebTransport). Your API must support streaming for receiving messages and updates. - Easy to run two instances of the server and all its dependencies (tip: docker-compose) - Doesn't need to be production-ready but please follow standard quality practices (code structure, testing)