master
go 13 lines 621 Bytes
Raw
1 package config
2
3 // Reprovider configuration describes how CID from local datastore are periodically re-announced to routing systems.
4 // For provide behavior of ad-hoc or newly created CIDs and their first-time announcement, see Provide.*
5 //
6 // Deprecated: use Provide instead. This will be removed in a future release.
7 type Reprovider struct {
8 // Deprecated: use Provide.DHT.Interval instead. This will be removed in a future release.
9 Interval *OptionalDuration `json:",omitempty"`
10
11 // Deprecated: use Provide.Strategy instead. This will be removed in a future release.
12 Strategy *OptionalString `json:",omitempty"`
13 }