hoprd/
lib.rs

1//! HOPR daemon application providing a higher level interface for creating a HOPRd with or without
2//! a dedicated REST API.
3//!
4//! When the Rest API is enabled, the node serves a Swagger UI to inspect and test
5//! the Rest API v4 at: http://localhost:3001/scalar or http://localhost:3001/swagger-ui
6//!
7//! NOTE: Hostname and port can be different, since they depend on the settings `--apiHost` and `--apiPort`.
8//!
9//! ## Usage
10//! See `hoprd --help` for full list.
11
12pub mod cli;
13pub mod config;
14pub mod errors;
15pub mod exit;