Move core logic to LeakFinder struct

This commit is contained in:
2018-07-08 01:36:25 +01:00
parent c6425e5699
commit 87bc205a17
6 changed files with 110 additions and 117 deletions

View File

@@ -18,3 +18,7 @@ type Entry struct {
Offset int64
Index string
}
func (s *Entry) Address() string {
return s.Object.Address
}