mirror of
https://github.com/Simplxss/SignerServer.git
synced 2024-11-21 00:37:53 +08:00
13 lines
279 B
C++
13 lines
279 B
C++
#include "sign.h"
|
|
#include "../include/cpp-httplib/httplib.h"
|
|
|
|
class Server
|
|
{
|
|
public:
|
|
Server(int port);
|
|
|
|
private:
|
|
httplib::Server svr;
|
|
Sign sign;
|
|
static std::string ConstructResponse(const std::string &sign, const std::string &extra, const std::string &token);
|
|
}; |