mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 12:57:44 +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
|
|
}
|