Files
rbheap/heap_item.go
2018-07-06 03:20:18 +01:00

10 lines
185 B
Go

package main
//go:generate easyjson -all heap_item.go
// HeapItem is a parsed heap item object
type HeapItem struct {
Address string `json:"address"`
Type string `json:"type"`
}