package main
type Engineer struct {
Name string
Role string
Company string
Focus []string
}
func main() {
aayush := Engineer{
Name: "Aayush Agrawal",
Role: "Backend Engineer",
Company: "Brevo",
Focus: []string{
"distributed systems",
"high-throughput messaging pipelines",
"event-driven architecture (Kafka)",
"cloud-native infra on Kubernetes",
},
}
aayush.Ship() // 📨 billions of emails, reliably
}- 🔭 Building email delivery infrastructure at Brevo — Go services moving messages at massive scale
- ⚙️ At home with Kafka, Redis, MongoDB, GCS and clean, decoupled, dependency-injected Go
- ☸️ Deploying on Kubernetes with GitOps (ArgoCD), observability via Datadog
- 🌱 Always sharpening: system design, performance profiling, resilient distributed patterns


