Skip to content

Instantly share code, notes, and snippets.

View lEx0's full-sized avatar
🤖
Focused at work

Amangeldy Kadyl lEx0

🤖
Focused at work
View GitHub Profile
@hassansin
hassansin / request-response.go
Last active January 20, 2025 07:26
Request-response pattern over asynchronous protocol using Go channel
package main
import (
"errors"
"fmt"
"math/rand"
"net/http"
"sync"
"time"