ipfs-search/ipfs-search

View on GitHub
types/reference.go

Summary

Maintainability
A
0 mins
Test Coverage
package types

// Reference to indexed item
type Reference struct {
    Parent *Resource
    Name   string
}

// String shows the name
func (r *Reference) String() string {
    return r.Name
}