├── .gitignore ├── LICENSE ├── README.md ├── buffer.go ├── buffer_test.go ├── consts.go ├── go.mod └── reader.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/README.md -------------------------------------------------------------------------------- /buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/buffer.go -------------------------------------------------------------------------------- /buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/buffer_test.go -------------------------------------------------------------------------------- /consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/consts.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mdouchement/dng 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdouchement/dng/HEAD/reader.go --------------------------------------------------------------------------------