1
0
mirror of https://github.com/mayflower/docker-ls.git synced 2025-11-26 12:03:12 +03:00
Files
docker-ls/lib/cache_hints.go
2016-02-17 14:39:35 +01:00

14 lines
239 B
Go

package lib
func cacheHintRegistryList() string {
return "catalog:"
}
func cacheHintTagList(repository string) string {
return "pull:" + repository
}
func cacheHintTagDetails(repository string) string {
return "pull:" + repository
}