func thumbnailPath()

in code/function/function.go [180:185]


func thumbnailPath(name string) string {
	ext := filepath.Ext(name)
	newBase := strings.Replace(filepath.Base(name), ext, "/thumbnail"+ext, 1)
	newPath := "processed/" + newBase
	return newPath
}