1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-09-29 23:10:44 +00:00
falk-werner_webfuse/src/webfuse/ws/config.hpp

20 lines
181 B
C++
Raw Normal View History

2022-11-13 21:22:35 +00:00
#ifndef WEBFUSE_WS_CONFIG_HPP
#define WEBFUSE_WS_CONFIG_HPP
#include <cinttypes>
namespace webfuse
{
class ws_config
{
public:
ws_config();
uint16_t port;
};
}
#endif