8 lines
221 B
C++
8 lines
221 B
C++
#pragma once
|
|
#include "config.hpp"
|
|
#include <string>
|
|
|
|
void webServerStart(AppConfig &config);
|
|
void webServerConnect(AppConfig &config,const std::string &type,const std::string &ip);
|
|
void webServerStop(AppConfig &config);
|