mirror of
https://github.com/jimeh/rbheap.git
synced 2026-02-19 04:46:40 +00:00
10 lines
185 B
Go
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"`
|
|
}
|