This guide walks you through writing a complete service in goa. The simple service implements a small subset of the cellar example found in the github repository. The service deals with wine bottles, more specifically it makes it possible to retrieve pre-existing wine bottle models through simple GET requests.
Prerequisite Install goa and goagen:
go get -u github.com/goadesign/goa/... Design The first thing to do when writing a goa service is to describe the API using the goa design language.
↧