github.com/prebid/prebid-server@v0.275.0/macros/replacer.go (about) 1 package macros 2 3 type Replacer interface { 4 // Replace the macros and returns replaced string 5 // if any error the error will be returned 6 Replace(url string, macroProvider *macroProvider) (string, error) 7 }