Codebase list golang-rsc-qr / ca9a01f
qr: add import comments, go.mod Make import path clearer. Fixes #1. Russ Cox 5 years ago
4 changed file(s) with 4 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
22 // license that can be found in the LICENSE file.
33
44 // Package coding implements low-level QR coding details.
5 package coding
5 package coding // import "rsc.io/qr/coding"
66
77 import (
88 "fmt"
22 // license that can be found in the LICENSE file.
33
44 // Package gf256 implements arithmetic over the Galois Field GF(256).
5 package gf256
5 package gf256 // import "rsc.io/qr/gf256"
66
77 import "strconv"
88
0 module rsc.io/qr
44 /*
55 Package qr encodes QR codes.
66 */
7 package qr
7 package qr // import "rsc.io/qr"
88
99 import (
1010 "errors"