https://github.com/ipfs/go-ipfs
Raw File
Tip revision: e0fabd6dbf69624a259dd735065465e09ebb0a61 authored by Jorropo on 21 July 2022, 03:01:03 UTC
Merge pull request #9133 from ipfs/release-v0.14.0
Tip revision: e0fabd6
remotepin.go
package config

var (
	RemoteServicesPath     = "Pinning.RemoteServices"
	PinningConcealSelector = []string{"Pinning", "RemoteServices", "*", "API", "Key"}
)

type Pinning struct {
	RemoteServices map[string]RemotePinningService
}

type RemotePinningService struct {
	API      RemotePinningServiceAPI
	Policies RemotePinningServicePolicies
}

type RemotePinningServiceAPI struct {
	Endpoint string
	Key      string
}

type RemotePinningServicePolicies struct {
	MFS RemotePinningServiceMFSPolicy
}

type RemotePinningServiceMFSPolicy struct {
	// Enable enables watching for changes in MFS and re-pinning the MFS root cid whenever a change occurs.
	Enable bool
	// Name is the pin name for MFS.
	PinName string
	// RepinInterval determines the repin interval when the policy is enabled. In ns, us, ms, s, m, h.
	RepinInterval string
}
back to top