├── .gitignore ├── README.md ├── UNLICENSE ├── database.go ├── go.mod ├── main.go └── script.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/atomkv/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/atomkv/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/atomkv/HEAD/UNLICENSE -------------------------------------------------------------------------------- /database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/atomkv/HEAD/database.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/skeeto/atomkv 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/atomkv/HEAD/main.go -------------------------------------------------------------------------------- /script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/atomkv/HEAD/script.go --------------------------------------------------------------------------------