Skip to content

Instantly share code, notes, and snippets.

View machacekondra's full-sized avatar

Ondra Machacek machacekondra

View GitHub Profile
@machacekondra
machacekondra / context.go
Created September 13, 2023 12:51 — forked from montanaflynn/context.go
An example of using context to cancel goroutines between server handlers
package main
import (
"context"
"fmt"
"log"
"net/http"
"sync"
"time"
)