userver: userver/components/minimal_component_list.hpp Source File
Loading...
Searching...
No Matches
minimal_component_list.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/components/minimal_component_list.hpp
4/// @brief @copybrief components::MinimalComponentList()
5
6#include <userver/components/component_list.hpp>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace components {
11
12/// @ingroup userver_components
13///
14/// @brief Returns a list of components to do basic logging, component initialization and configuration.
15///
16/// The list contains:
17/// * os_signals::ProcessorComponent
18/// * components::Logging
19/// * components::ManagerControllerComponent
20/// * components::StatisticsStorage
21/// * components::DynamicConfig
22/// * tracing::DefaultTracingManagerLocator
23ComponentList MinimalComponentList();
24
25} // namespace components
26
27USERVER_NAMESPACE_END