mirror of
https://github.com/mayflower/docker-ls.git
synced 2025-11-28 00:01:09 +03:00
14 lines
239 B
Go
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
|
|
}
|