31 lines
622 B
Go
31 lines
622 B
Go
package common
|
|
|
|
import (
|
|
"github.com/davecgh/go-spew/spew"
|
|
"github.com/gdamore/tcell/v2"
|
|
"github.com/mr-tron/base58"
|
|
)
|
|
|
|
type RawEntry struct {
|
|
// key and value used for record dump.
|
|
// nolint:unused
|
|
key, value []byte
|
|
}
|
|
|
|
var RawParser Parser = rawParser
|
|
|
|
func rawParser(key, value []byte) (SchemaEntry, Parser, error) {
|
|
return &RawEntry{key: key, value: value}, rawParser, nil
|
|
}
|
|
|
|
func (r *RawEntry) String() string {
|
|
return FormatSimple(base58.Encode(r.key), tcell.ColorRed)
|
|
}
|
|
|
|
func (r *RawEntry) DetailedString() string {
|
|
return spew.Sdump(r)
|
|
}
|
|
|
|
func (r *RawEntry) Filter(string, any) FilterResult {
|
|
return No
|
|
}
|