├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── marshal ├── README.md ├── marshal.go └── marshal_test.go └── session ├── README.md ├── session.go └── session_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/README.md -------------------------------------------------------------------------------- /marshal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/marshal/README.md -------------------------------------------------------------------------------- /marshal/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/marshal/marshal.go -------------------------------------------------------------------------------- /marshal/marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/marshal/marshal_test.go -------------------------------------------------------------------------------- /session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/session/README.md -------------------------------------------------------------------------------- /session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/session/session.go -------------------------------------------------------------------------------- /session/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjust/gorails/HEAD/session/session_test.go --------------------------------------------------------------------------------