ac43b0d125
* Update Response functions to return MonadAffs * Install psc-package for travis build
12 lines
303 B
Markdown
12 lines
303 B
Markdown
# CustomStack Example
|
|
|
|
This example demonstrates using middleware to introduce a custom monad stack
|
|
to your application. Here, we run our router within a `ReaderT` to provide a
|
|
globally-available environment during routing.
|
|
|
|
To run the example server, run:
|
|
|
|
```bash
|
|
make example EXAMPLE=CustomStack
|
|
```
|