1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00

go-ipfs-config: Removed tour command and fix test

License: MIT
Signed-off-by: Sherod Taylor <sherodtaylor@gmail.com>
This commit is contained in:
Sherod Taylor
2017-08-05 22:55:50 -05:00
parent c875a44a8d
commit 2f2b1fbcd7
2 changed files with 0 additions and 8 deletions

View File

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

View File

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