This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Incremental Rendering with Deck.md | |
You're right in that I want to do Incremental Rendering. | |
I walked the code and some areas I do not think will allow it yet. | |
## Use case | |
User wants to visually edit a Deck using Deck Canvas OR CLI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package utils | |
import ( | |
"context" | |
"golang.org/x/sync/errgroup" | |
) | |
type ErrGroupSharedCtx struct { | |
eg *errgroup.Group |