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.

8 lines
254 B

  1. package changekeys
  2. import "git.aiterp.net/rpdata/api/models"
  3. // All makes a changelog that's (model, "*"). It's a helper to standardize it.
  4. func All(model string) models.ChangeKey {
  5. return models.ChangeKey{Model: models.ChangeModel(model), ID: "*"}
  6. }