lint:missing comment for pub func

This commit is contained in:
Umputun
2018-05-25 01:15:00 -05:00
parent 83afa4d57c
commit d8fee735f1
+1
View File
@@ -17,6 +17,7 @@ type LoadingCache interface {
Flush(scopes ...string)
}
// CacheKey makes full key from primary key ans scopes
func CacheKey(key string, scopes ...string) string {
return strings.Join(scopes, "$$") + "@@" + key
}