# README
go-reproducible-builds

Go module to expose reproducible-builds.org's SOURCE_DATE_EPOCH
environment variable.
install
go get github.com/frantjc/go-reproducible-builds
use
import (
"fmt"
reproduciblebuilds "github.com/frantjc/go-reproducible-builds"
)
func main() {
fmt.Println(reproduciblebuilds.SourceDateEpoch)
}