You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Veronica is currently analyzing based on packages, but this is not enough. I want to be able to use finer grained analysis capabilities.
Example
There has two services:
// service userimport"pkg/util/idutil"funcmain() {
idutil.GenUserID()
}
// service orderimport"pkg/util/idutil"funcmain() {
idutil.GenOrderId()
}
If we modify implementation of idutil.GenOrderId, Veronica will prompt that both services will be affected, but in fact, we only need to rebuild order service.
The text was updated successfully, but these errors were encountered:
Veronica is currently analyzing based on packages, but this is not enough. I want to be able to use finer grained analysis capabilities.
Example
There has two services:
If we modify implementation of
idutil.GenOrderId
, Veronica will prompt that both services will be affected, but in fact, we only need to rebuild order service.The text was updated successfully, but these errors were encountered: