@cryptotaxi247 / kubo / commits / 4f6eb4005

go-ipfs-config: Implement ipns republisher

This commit adds a very basic process that will periodically go through a list of given ids and republish the values for their ipns entries. License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>

Jeromy committed Sep 21, 2015 at 16:35 UTC 4f6eb40056dd948423b449952c31a67157dd950b
2 files changed +6
config/config.go
+1
@@ -23,6 +23,7 @@ type Config struct {
23 Mounts Mounts // local node's mount points
24 Version Version // local node's version management
25 Discovery Discovery // local node's discovery mechanisms
26 + Ipns Ipns // Ipns settings
27 Bootstrap []string // local nodes's bootstrap peer addresses
28 Tour Tour // local node's tour position
29 Gateway Gateway // local node's gateway server options
config/ipns.go new
+5
@@ -0,0 +1,5 @@
1 +package config
2 +
3 +type Ipns struct {
4 + RepublishPeriod string
5 +}