1 2 3 4 5 6 7
package common import "fmt" func CombineFileName(base string, ext string) string { return fmt.Sprintf("%s.%s", base, ext) }