├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data_store.go ├── doc.go ├── encode.go ├── karma ├── go │ └── locstor_test.go ├── js │ └── .gitkeep ├── test-mac.conf.js └── test.sh └── local_storage.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/README.md -------------------------------------------------------------------------------- /data_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/data_store.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/doc.go -------------------------------------------------------------------------------- /encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/encode.go -------------------------------------------------------------------------------- /karma/go/locstor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/karma/go/locstor_test.go -------------------------------------------------------------------------------- /karma/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /karma/test-mac.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/karma/test-mac.conf.js -------------------------------------------------------------------------------- /karma/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/karma/test.sh -------------------------------------------------------------------------------- /local_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-humble/locstor/HEAD/local_storage.go --------------------------------------------------------------------------------