kubo/config/ipns.go
jwh 9eaf572b28 go-ipfs-config: feat: pubsub and ipns pubsub flags (#145)
* enable pubsub and namesys pubsub to be enable via config
* rename Ipns key, switch type to Flag
* omit the fields if empty
2021-10-27 21:50:10 +02:00

12 lines
197 B
Go

package config
type Ipns struct {
RepublishPeriod string
RecordLifetime string
ResolveCacheSize int
// Enable namesys pubsub (--enable-namesys-pubsub)
UsePubsub Flag `json:",omitempty"`
}