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