copilot-swe-agent[bot] d936a45bfd Fix SSE specification compliance - add space after colon in all SSE fields
Co-authored-by: appleboy <21979+appleboy@users.noreply.github.com>
2025-11-15 15:22:08 +00:00

7 lines
104 B
Go

package concurrent
import "context"
type Executor interface {
Go(handler func(ctx context.Context))
}