userver: samples/hello_service/main.cpp
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
samples/hello_service/main.cpp
// Note: this is for the purposes of tests/samples only
#include <hello_handler.hpp>
int main(int argc, char* argv[]) {
auto component_list = components::MinimalServerComponentList().Append<samples::hello::HelloHandler>();
return utils::DaemonMain(argc, argv, component_list);
}