package main
type Developer struct {
Name string
Location string
Stack []string
Building []string
}
func main() {
me := Developer{
Name: "Akash Yadav",
Location: "India 🇮🇳",
Stack: []string{"Go", "Next.js", "TypeScript", "Docker", "Linux"},
Building: []string{
"🔓 Free Gemini API — Use Google Gemini for free",
"📱 WhatsApp APIs — Fastest WA API in Go",
"💳 UPI Gateway — Zero-fee payment system",
"🤖 Automation tools that save hours daily",
},
}
me.Ship() // no excuses, just ship it
}
|
|
|
|
|
|