mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 03:17:43 +08:00
13 lines
149 B
Go
13 lines
149 B
Go
package config
|
|
|
|
type Discovery struct {
|
|
MDNS MDNS
|
|
}
|
|
|
|
type MDNS struct {
|
|
Enabled bool
|
|
|
|
// Time in seconds between discovery rounds
|
|
Interval int
|
|
}
|