Expand description
Handles application configuration for erpc-analysis.
This module defines structures for parsing the Config.toml
file and for
loading sensitive information like Neo4j credentials from environment
variables.
Structsยง
- The fully processed and usable configuration for the
erpc-analysis
application. It combines settings from the TOML file and environment variables. - Holds Neo4j connection parameters. These are loaded from environment variables if
neo4j_allowed
is true. - Represents the
[primary]
table within theConfig.toml
file. It extracts settings relevant toerpc-analysis
from this section. - Represents the root structure of the
Config.toml
file.erpc-analysis
is primarily interested in the settings within the[primary]
table.