├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── authentication.go ├── authentication_test.go ├── docs └── index.md ├── encryption.go ├── encryption_test.go ├── filter.go ├── filter_test.go ├── go.mod ├── go.sum ├── gosn.go ├── helpers.go ├── helpers_test.go ├── items.go ├── items_test.go ├── session.go └── session_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/README.md -------------------------------------------------------------------------------- /authentication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/authentication.go -------------------------------------------------------------------------------- /authentication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/authentication_test.go -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/docs/index.md -------------------------------------------------------------------------------- /encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/encryption.go -------------------------------------------------------------------------------- /encryption_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/encryption_test.go -------------------------------------------------------------------------------- /filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/filter.go -------------------------------------------------------------------------------- /filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/filter_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/go.sum -------------------------------------------------------------------------------- /gosn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/gosn.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/helpers.go -------------------------------------------------------------------------------- /helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/helpers_test.go -------------------------------------------------------------------------------- /items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/items.go -------------------------------------------------------------------------------- /items_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/items_test.go -------------------------------------------------------------------------------- /session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/session.go -------------------------------------------------------------------------------- /session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhadfield/gosn/HEAD/session_test.go --------------------------------------------------------------------------------