mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-09 23:42:20 +08:00
8 lines
174 B
Go
8 lines
174 B
Go
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
|
|
}
|