Skip to content

Instantly share code, notes, and snippets.

View darccio's full-sized avatar
🏠
Working from home

Dario Castañé darccio

🏠
Working from home
View GitHub Profile
@darccio
darccio / so-cutter.go
Created December 28, 2011 17:57
Solution for question "Reading image from HTTP request's body in Go" at SO
package main
import (
"fmt"
"http"
"io"
)
var client = http.Client{}