mirror of
https://github.com/jimeh/rbheap.git
synced 2026-02-19 04:46:40 +00:00
10 lines
188 B
Go
10 lines
188 B
Go
package main
|
|
|
|
//go:generate easyjson -all heap_entry.go
|
|
|
|
// HeapEntry is a parsed heap item object
|
|
type HeapEntry struct {
|
|
Address string `json:"address"`
|
|
Type string `json:"type"`
|
|
}
|