mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
* enable pubsub and namesys pubsub to be enable via config * rename Ipns key, switch type to Flag * omit the fields if empty
12 lines
197 B
Go
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"`
|
|
}
|