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
8 lines
254 B
package changekeys
|
|
|
|
import "git.aiterp.net/rpdata/api/models"
|
|
|
|
// All makes a changelog that's (model, "*"). It's a helper to standardize it.
|
|
func All(model string) models.ChangeKey {
|
|
return models.ChangeKey{Model: models.ChangeModel(model), ID: "*"}
|
|
}
|