June 2017
Beginner
1091 pages
22h 9m
English
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.
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 ...
Read now
Unlock full access