Skip to content

Instantly share code, notes, and snippets.

@bxcodec
Created June 6, 2017 08:53
Show Gist options
  • Save bxcodec/270c3c95a2a33e7b6e4dc3bb6d46f540 to your computer and use it in GitHub Desktop.
Save bxcodec/270c3c95a2a33e7b6e4dc3bb6d46f540 to your computer and use it in GitHub Desktop.
Article Clean Arch
import "time"
type Article struct {
ID int64 `json:"id"`
Title string `json:"title"`
Content string `json:"content"`
UpdatedAt time.Time `json:"updated_at"`
CreatedAt time.Time `json:"created_at"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment