summaryrefslogtreecommitdiff
path: root/common/filename.go
blob: aedd377fedb8dab2100edc597b10944dae025cc2 (plain)
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)
}