GraphQL API and utilities for the rpdata project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
208 B

5 years ago
  1. package stories
  2. import (
  3. "git.aiterp.net/rpdata/api/models"
  4. )
  5. // Remove the story from the database
  6. func Remove(story models.Story) (*models.Story, error) {
  7. return &story, collection.RemoveId(story.ID)
  8. }