add convert string

This commit is contained in:
Brad Rydzewski 2019-03-13 14:24:47 -07:00
parent 3be804f3da
commit 199d1f022a
1 changed files with 6 additions and 0 deletions

View File

@ -21,3 +21,9 @@ package converter
func Convert(d []byte, m Metadata) ([]byte, error) {
return d, nil
}
// ConvertString converts the yaml configuration file from
// the legacy format to the 1.0+ format.
func ConvertString(s string, m Metadata) (string, error) {
return s, nil
}