From 2f2b1fbcd71c8693376d2cb7551f57707f3a653e Mon Sep 17 00:00:00 2001 From: Sherod Taylor Date: Sat, 5 Aug 2017 22:55:50 -0500 Subject: [PATCH] go-ipfs-config: Removed tour command and fix test License: MIT Signed-off-by: Sherod Taylor --- config/config.go | 1 - config/tour.go | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 config/tour.go diff --git a/config/config.go b/config/config.go index 411cecc68..3e3c89168 100644 --- a/config/config.go +++ b/config/config.go @@ -21,7 +21,6 @@ type Config struct { Discovery Discovery // local node's discovery mechanisms Ipns Ipns // Ipns settings Bootstrap []string // local nodes's bootstrap peer addresses - Tour Tour // local node's tour position Gateway Gateway // local node's gateway server options SupernodeRouting SupernodeClientConfig // local node's routing servers (if SupernodeRouting enabled) API API // local node's API settings diff --git a/config/tour.go b/config/tour.go deleted file mode 100644 index e22d8453f..000000000 --- a/config/tour.go +++ /dev/null @@ -1,7 +0,0 @@ -package config - -// Tour stores the 'ipfs tour' read-list and resume point -type Tour struct { - Last string // last tour topic read - // Done []string // all topics done so far -}