diff options
| author | Sebastien Binet <binet@cern.ch> | 2018-07-24 16:09:06 +0200 | 
|---|---|---|
| committer | Kurt Jung <kurt.w.jung@gmail.com> | 2018-07-24 10:09:06 -0400 | 
| commit | c4fb5030287eb4ea19421604fb47933b88e8638f (patch) | |
| tree | 9d82c0742fba8488c33b7f4b9a86da179da2e0ef | |
| parent | 25acc1ecb6d9bc748508693b932659a7dd10b776 (diff) | |
gofpdf: add support for Go modules (#185)
* gofpdf: add support for Go modules
* gofpdf: apply goimports
| -rw-r--r-- | go.mod | 1 | ||||
| -rw-r--r-- | util.go | 3 | 
2 files changed, 2 insertions, 2 deletions
| @@ -0,0 +1 @@ +module github.com/jung-kurt/gofpdf @@ -17,11 +17,10 @@  package gofpdf  import ( +	"bufio"  	"bytes"  	"compress/zlib"  	"fmt" -	// "github.com/davecgh/go-spew/spew" -	"bufio"  	"io"  	"math"  	"os" | 
