summaryrefslogtreecommitdiff
path: root/model/mod.go
blob: 3f83bedc3cb6a60795338642fff672aa4925eeda (plain)
1
2
3
4
5
6
7
8
package model

// Modder can change sources after their creation
// this can add additional data, customization, etc.
// these have to be registered in main.go
type Modder interface {
	Mod(source *Source, result *HydratedSource) error
}