Exposing data operations over HTTP
Now that we have built all of our entities and the data access methods that operate on them, it's time to wire them up to an HTTP API. This will feel more familiar as we have already done this kind of thing a few times in the book.
Optional features with type assertions
When you use interface types in Go, you can perform type assertions to see whether the objects implement other interfaces, and since you can write interfaces inline, it is possible to very easily find out whether an object implements a specific function.
If v
is interface{}
, we can see whether it has the OK
method using this pattern:
if obj, ok := v.(interface{ OK() error }); ok { // v has OK() method } else { // v does not have OK() method }
If the ...
Get Go Programming Blueprints - Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.