1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 14:59:25 +08:00
Files
Alas/blcrack/cracker/server.hpp

19 lines
299 B
C++
Raw Normal View History

2025-11-01 00:23:46 +08:00
#ifndef SERVER_HPP
#define SERVER_HPP
2026-01-28 11:53:21 +08:00
#include <exception>
2025-11-01 00:23:46 +08:00
#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