Project Go — Simple Pickup
go run main.go Test with:
type PickupResponse struct { Line string json:"line" }
func randomPickupHandler(w http.ResponseWriter, r *http.Request) { rand.Seed(time.Now().UnixNano()) line := pickupLines[rand.Intn(len(pickupLines))] resp := PickupResponse{Line: line} simple pickup project go
var pickupLines = []string{ "Are you a magician? Because whenever I look at you, everyone else disappears.", "Do you have a name, or can I call you mine?", "Are you made of copper and tellurium? Because you're Cu-Te.", "If you were a vegetable, you’d be a cute-cumber.", "Are you Wi-Fi? Because I'm feeling a connection.", "Excuse me, but I think the stars came down tonight — and one is standing right in front of me.", "Is your name Google? Because you have everything I’m searching for.", "I must be a snowflake, because I've fallen for you.", }
curl http://localhost:8080/pickup Example output: go run main
package main import ( "encoding/json" "math/rand" "net/http" "time" )
Run it:
func main() { http.HandleFunc("/pickup", randomPickupHandler) http.ListenAndServe(":8080", nil) }
w.Header().Set("Content-Type", "application/json") json.NewEncoder(w).Encode(resp) } Because I'm feeling a connection
The result: a GET /pickup endpoint that returns a random cheesy, funny, or surprisingly smooth pickup line. Create a main.go file: