V2 swagger model in place

tests being written to validate and flush out bugs
This commit is contained in:
Dave Shanley
2022-09-03 13:30:53 -04:00
parent 8929db5868
commit 1814ac58eb
17 changed files with 1161 additions and 90 deletions

View File

@@ -19,6 +19,9 @@ func FindItemInMap[T any](item string, collection map[KeyReference[string]]Value
if n.Value == item {
return &o
}
if strings.ToLower(n.Value) == strings.ToLower(item) {
return &o
}
}
return nil
}