Skip to content

Instantly share code, notes, and snippets.

@BK1031
Created July 16, 2024 16:23
Show Gist options
  • Save BK1031/f6185add8135874dc266d97fc5f595a6 to your computer and use it in GitHub Desktop.
Save BK1031/f6185add8135874dc266d97fc5f595a6 to your computer and use it in GitHub Desktop.
singlestore-go-bookstore DeleteOrder
func DeleteOrder(order model.Order) error {
result := database.DB.Delete(&order)
if result.Error != nil {
return result.Error
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment