Last active
May 22, 2021 09:55
-
-
Save dipeshhkc/daedaf9fe6dc33504b327087bedd7368 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
//ADDING NEW POST | |
post := &Post{Name: "My First Post"} | |
if db.Create(&post).Error != nil { | |
log.Panic("Unable to create post") | |
} | |
log.Print("just created post",post.ID) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment