In this chapter, I complete the development of the custom web application platform started in Chapter 32 and continued in Chapter 33.
You can download the example project for this chapter—and for all the other chapters in this book—from https://github.com/apress/pro-go. See Chapter 2 for how to get help if you have problems running the examples.
Introducing Action Results
At the moment, the platform deals with the responses generated by request handlers by writing them as strings. I don’t want to make each handler method deal ...