mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-14 18:58:40 +08:00
9 lines
286 B
Go
9 lines
286 B
Go
package config
|
|
|
|
// Addresses stores the (string) multiaddr addresses for the node.
|
|
type Addresses struct {
|
|
Swarm []string // addresses for the swarm network
|
|
API string // address for the local API (RPC)
|
|
Gateway string // address to listen on for IPFS HTTP object gateway
|
|
}
|