1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 06:40:31 +00:00

Fix golint errors

This commit is contained in:
Josh Curl
2016-11-28 00:06:00 -08:00
parent fa1dc760f2
commit a7c34b9855
35 changed files with 205 additions and 212 deletions

View File

@@ -9,7 +9,7 @@ import (
)
type VlanDefinition struct {
Id int
ID int
Name string
}
@@ -65,7 +65,7 @@ func ParseVlanDefinitions(vlans string) ([]VlanDefinition, error) {
}
def := VlanDefinition{
Id: id,
ID: id,
}
if len(idName) > 1 {