Skip to content

Instantly share code, notes, and snippets.

@marioarizaj
Created January 18, 2021 13:30
Show Gist options
  • Save marioarizaj/d488023b3c8bf54897b9ce66546e65dc to your computer and use it in GitHub Desktop.
Save marioarizaj/d488023b3c8bf54897b9ce66546e65dc to your computer and use it in GitHub Desktop.
package models
import "time"
type Author struct {
ID int `json:"id"`
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment