Skip to content

Instantly share code, notes, and snippets.

@unexpand
unexpand / worker.go
Created November 6, 2017 18:11
A simple go worker example
package main
import (
"fmt"
"time"
)
type Result struct {
Name string
Id int
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"strconv"