Skip to content

Commit

Permalink
deepsource
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerza committed May 25, 2021
1 parent a2d5375 commit 08652c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clab/config/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func WriteConfig(transport Transport, snips []ConfigSnippet) error {
var TemplateOverride string

// the new agreed node config
type nodeConfig struct {
type NodeConfig struct {
Vars map[string]string
Transport string
Templates []string
Expand All @@ -54,8 +54,8 @@ func SplitTrim(s string) []string {
return res
}

func GetNodeConfigFromLabels(labels map[string]string) nodeConfig {
nc := nodeConfig{
func GetNodeConfigFromLabels(labels map[string]string) NodeConfig {
nc := NodeConfig{
Vars: labels,
Transport: "ssh",
}
Expand Down

0 comments on commit 08652c1

Please sign in to comment.