Guest User

Untitled

a guest
Jul 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. type Tweet struct {
  2. Content string
  3. Author User
  4. CreatedAt time.Time
  5. }
  6.  
  7. type User struct {
  8. TwitterHandle string
  9. // the rest is obvious
  10. }
  11.  
  12. // TwitterRepository interface that defines the methods
  13. type TwitterRepository interface {
  14. CreateTweet(tweet *Tweet)error
  15. DeleteTweet(id string)error
  16. // etc
  17. }
Add Comment
Please, Sign In to add comment