ipfs-search/ipfs-search

View on GitHub
components/index/types/update.go

Summary

Maintainability
A
0 mins
Test Coverage
package types

import (
    "time"
)

// Update represents the updatable part of a Document.
type Update struct {
    LastSeen   *time.Time `json:"last-seen,omitempty" redis:"l,omitempty"`
    References References `json:"references,omitempty" redis:"r,omitempty"`
}