mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-27 04:41:03 +00:00
14 lines
331 B
JavaScript
14 lines
331 B
JavaScript
'use strict'
|
|
|
|
exports.messages = {
|
|
NOT_STARTED_YET: 'The libp2p node is not started yet',
|
|
DHT_DISABLED: 'DHT is not available'
|
|
}
|
|
|
|
exports.codes = {
|
|
DHT_DISABLED: 'ERR_DHT_DISABLED',
|
|
PUBSUB_NOT_STARTED: 'ERR_PUBSUB_NOT_STARTED',
|
|
ERR_NODE_NOT_STARTED: 'ERR_NODE_NOT_STARTED',
|
|
ERR_DISCOVERED_SELF: 'ERR_DISCOVERED_SELF'
|
|
}
|