├── LICENSE ├── README.md ├── errcode.go ├── gen.rb └── go.mod /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackc/pgerrcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackc/pgerrcode/HEAD/README.md -------------------------------------------------------------------------------- /errcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackc/pgerrcode/HEAD/errcode.go -------------------------------------------------------------------------------- /gen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackc/pgerrcode/HEAD/gen.rb -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jackc/pgerrcode 2 | 3 | go 1.12 4 | --------------------------------------------------------------------------------