├── .gitignore ├── LICENSE ├── README.md ├── atomic.go ├── file_unix.go ├── file_windows.go ├── go.mod └── zfile_windows.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/README.md -------------------------------------------------------------------------------- /atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/atomic.go -------------------------------------------------------------------------------- /file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/file_unix.go -------------------------------------------------------------------------------- /file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/file_windows.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/natefinch/atomic 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /zfile_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/atomic/HEAD/zfile_windows.go --------------------------------------------------------------------------------