fonchain-fiee/pkg/cache/key.go

8 lines
121 B
Go
Raw Normal View History

2025-02-20 08:24:49 +00:00
package cache
import "fmt"
func GetLangHashKey(content string) string {
return fmt.Sprintf("lang:hash:%s", content)
}