Skip to content

Instantly share code, notes, and snippets.

@marioarizaj
Last active January 18, 2021 16:31
Show Gist options
  • Save marioarizaj/d7031fba00f67d89a1a198ca8508d233 to your computer and use it in GitHub Desktop.
Save marioarizaj/d7031fba00f67d89a1a198ca8508d233 to your computer and use it in GitHub Desktop.
package models
import "time"
type Article struct {
ID int `json:"id"`
Name string `json:"name"`
AuthorID int `json:"author_id"`
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