8 lines
121 B
Go
8 lines
121 B
Go
|
package cache
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func GetLangHashKey(content string) string {
|
||
|
return fmt.Sprintf("lang:hash:%s", content)
|
||
|
}
|