├── .gitignore ├── LICENSE ├── README.md ├── cmd └── file2byteslice │ └── main.go ├── go.mod └── write.go /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hajimehoshi/file2byteslice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hajimehoshi/file2byteslice/HEAD/README.md -------------------------------------------------------------------------------- /cmd/file2byteslice/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hajimehoshi/file2byteslice/HEAD/cmd/file2byteslice/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hajimehoshi/file2byteslice 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hajimehoshi/file2byteslice/HEAD/write.go --------------------------------------------------------------------------------