out returns a models.InResponse on line 18 of out/main.go, despite that the tests make assertions on what is json.Unarshal'd to a models.OutResponse on line 67 of out/out_test.go.
Technically, this does not impact functionality, as models.InResponse and models.OutResponse are similar. Nonetheless, it's a bit confusing for the reader and is presumably a typo.
out
returns amodels.InResponse
on line 18 ofout/main.go
, despite that the tests make assertions on what isjson.Unarshal
'd to amodels.OutResponse
on line 67 ofout/out_test.go
.Technically, this does not impact functionality, as
models.InResponse
andmodels.OutResponse
are similar. Nonetheless, it's a bit confusing for the reader and is presumably a typo.