mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 14:29:26 +08:00
18 lines
278 B
C++
18 lines
278 B
C++
#ifndef SERVER_HPP
|
|
#define SERVER_HPP
|
|
|
|
#include <httplib.h>
|
|
#include <map>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class CrackerServer: public httplib::Server {
|
|
public:
|
|
CrackerServer();
|
|
~CrackerServer() override = default;
|
|
|
|
static void Start();
|
|
};
|
|
|
|
#endif //SERVER_HPP
|