From ec8ef57b9f735dde5f48b98f8e3d56aea3c825b7 Mon Sep 17 00:00:00 2001 From: joshmossas Date: Wed, 23 Oct 2024 23:23:45 -0500 Subject: [PATCH] comment --- playground/go/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/playground/go/main.go b/playground/go/main.go index 4afefe82..1e7e04cb 100644 --- a/playground/go/main.go +++ b/playground/go/main.go @@ -11,6 +11,7 @@ import ( func main() { app := arri.NewApp(http.DefaultServeMux, arri.AppOptions[arri.DefaultContext]{}, arri.CreateDefaultContext) + // register the EventStreamRpc handler arri.EventStreamRpc(&app, WatchMessages, arri.RpcOptions{}) app.Run(arri.RunOptions{}) }