feat(multiplayer): dispatch completed result events

This commit is contained in:
Josh Creek
2026-09-01 15:43:32 +01:00
parent 9ec707674a
commit f3b56f70e3
7 changed files with 115 additions and 1 deletions
+1
View File
@@ -82,6 +82,7 @@ func main() {
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
defer stop()
go api.RunProposalOutboxDispatcher(ctx, db, service)
go api.RunResultOutboxDispatcher(ctx, db, service)
select {
case err := <-serveErr:
if err != nil && err != http.ErrServerClosed {