Skip to content

Instantly share code, notes, and snippets.

@krittawatcode
Created December 12, 2020 04:36
Show Gist options
  • Save krittawatcode/a85e3c2f49f03213ef001103217f5b45 to your computer and use it in GitHub Desktop.
Save krittawatcode/a85e3c2f49f03213ef001103217f5b45 to your computer and use it in GitHub Desktop.
package models
// Todo ...
type Todo struct {
ID uint `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
}
// TableName use to specific table
func (b *Todo) TableName() string {
return "todo"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment