Created
December 12, 2020 04:36
-
-
Save krittawatcode/a85e3c2f49f03213ef001103217f5b45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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