├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── docs └── REST │ ├── Docs.md │ ├── Endpoint.md │ ├── JSON.md │ └── Server.md ├── src └── REST │ ├── Docs.purs │ ├── Endpoint.purs │ ├── JSON.js │ ├── JSON.purs │ └── Server.purs └── test └── Main.purs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/bower.json -------------------------------------------------------------------------------- /docs/REST/Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/docs/REST/Docs.md -------------------------------------------------------------------------------- /docs/REST/Endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/docs/REST/Endpoint.md -------------------------------------------------------------------------------- /docs/REST/JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/docs/REST/JSON.md -------------------------------------------------------------------------------- /docs/REST/Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/docs/REST/Server.md -------------------------------------------------------------------------------- /src/REST/Docs.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/src/REST/Docs.purs -------------------------------------------------------------------------------- /src/REST/Endpoint.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/src/REST/Endpoint.purs -------------------------------------------------------------------------------- /src/REST/JSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/src/REST/JSON.js -------------------------------------------------------------------------------- /src/REST/JSON.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/src/REST/JSON.purs -------------------------------------------------------------------------------- /src/REST/Server.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/src/REST/Server.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paf31/purescript-rest/HEAD/test/Main.purs --------------------------------------------------------------------------------