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 -}