This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - endpoint | |
| for: movies | |
| that: persists new records | |
| for model: movie | |
| backed by: postgres | |
| cached by: redis | |
| - endpoint | |
| for: movies | |
| that: retrieves records |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "errors" | |
| "fmt" | |
| "os" | |
| "reflect" | |
| ) | |
| type Writer interface { |
OlderNewer