r-type  0.0.0
R-Type main
Loading...
Searching...
No Matches
AppConfigServer.hpp
Go to the documentation of this file.
1///
2/// @file AppConfigServer.hpp
3/// @brief This file contains the app config structure for server
4/// @namespace utl
5///
6
7#pragma once
8
9#include "Utils/Common.hpp"
10
11namespace utl
12{
13 namespace srv
14 {
15 struct AppConfig
16 {
17 std::string host;
18 uint16_t port;
19 };
20 } // namespace srv
21} // namespace utl
This file contains common definitions and constants.