amidgo
Results
2
issues of
amidgo
see context.go:644
I have this example ```go package linter import ( "context" "github.com/jmoiron/sqlx" ) func Do() { ctx := context.Background() db := new(sqlx.DB) rows, err := db.QueryContext(ctx, "SELECT * FROM animals") if...