package base type Replace struct { Old string New string } func CreateReplace(o string, n string) *Replace { return &Replace{ Old: o, New: n, } }