Merge pull request #54 from unistack-org/isExported

fixup for unexported fields
This commit is contained in:
2022-03-02 17:51:49 +03:00
committed by GitHub

View File

@@ -92,6 +92,9 @@ func newPathRequest(path string, method string, body string, msg interface{}, ta
continue
}
fld := tmsg.Type().Field(i)
if !fld.IsExported() {
continue
}
t := &tag{}
for _, tn := range tags {