INNER CODE UNIT · Go
readFromPathToStoreID
danielfoehrKn/kubeswitch · pkg/main.go:345
func readFromPathToStoreID(key string) string {
pathToStoreLock.RLock()
defer pathToStoreLock.RUnlock()
return pathToStoreID[key]
}
func writeToPathToStoreID(key string, value string) {
pathToStoreLock.Lock()
defer pathToStoreLock.Unlock()
pathToStoreID[key] = value
}
func readFromPathToKubeconfig(key string) string {
pathToKubeconfigLock.RLock()
defer pathToKubeconfigLock.RUnlock()
return pathToKubeconfig[key]
}