Corner case for GoAddTags
Opened this issue · 0 comments
yakomisar commented
GoAddTags does not work for structs, like this one:
function code
var apiSettings struct {
Secret string
dbConn string
}
some code
And for anonymous structs it does not work as well
settings := struct {
API string
Key string
}