Channel: golang

gofmt like tool (can you plugin to gofmt?) that rewrites ignored returns to explicitly set ‘_‘.

fmt.Println("hi")

gets rewritten to:

_err := fmt.Println("hi")

or something similar.

Preempts the complaint that Go lets you ignore errors.

golang ideas

dasmithii/GobDB

nice looking leveldb wrapper for go

golang

lokalebasen/go-env

pull down environment variables from etcd and run a process with them

devops golang

Enums in Go

Hadn’t seen this trick before.

golang