20#ifndef ORES_WT_SERVICE_CONFIG_OPTIONS_HPP
21#define ORES_WT_SERVICE_CONFIG_OPTIONS_HPP
25#include "ores.logging/logging_options.hpp"
26#include "ores.database/domain/database_options.hpp"
28namespace ores::wt::service::config {
37 std::optional<ores::logging::logging_options>
logging;
44std::ostream& operator<<(std::ostream& s,
const options& v);
Configuration for database connection.
Definition database_options.hpp:33
All configuration options required by ores.wt.service web application.
Definition options.hpp:33
ores::database::database_options database
Configuration related to database operations.
Definition options.hpp:41
std::optional< ores::logging::logging_options > logging
Configuration options related to logging, if any.
Definition options.hpp:37