diff options
Diffstat (limited to 'contrib/barcode')
-rw-r--r-- | contrib/barcode/barcode.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/barcode/barcode.go b/contrib/barcode/barcode.go index 8fb371e..0649564 100644 --- a/contrib/barcode/barcode.go +++ b/contrib/barcode/barcode.go @@ -20,10 +20,6 @@ package barcode import ( "bytes" "errors" - "image/jpeg" - "io" - "strconv" - "sync" "github.com/boombuler/barcode" "github.com/boombuler/barcode/codabar" "github.com/boombuler/barcode/code128" @@ -34,6 +30,10 @@ import ( "github.com/boombuler/barcode/twooffive" "github.com/jung-kurt/gofpdf" "github.com/ruudk/golang-pdf417" + "image/jpeg" + "io" + "strconv" + "sync" ) // barcodes represents the barcodes that have been registered through this |