Run the example with the optional port address for the service:
$ go run ./cmd/profilesvc/main.go -http.addr :8080
Create a Profile:
$ curl -d '{"id":"1234","Name":"Go Kit"}' -H "Content-Type: application/json" -X POST http://localhost:8080/profiles/ {}
Get the profile you just created
$ curl localhost:8080/profiles/1234
{"profile":{"id":"1234","name":"Go Kit"}}Work through the services code structs and transport endpoints to work with the additional services.
Hope that helps Tom.
Thanks!
Wade