Files
2024-06-13 23:44:19 -07:00

17 lines
307 B
C++

#ifndef EZ_NGINX_H
#define EZ_NGINX_H
#include <string>
#include <vector>
#include "http/httplib.h"
#include "clients/baseclient.h"
#include "common.h"
#include "clients/remote_client.h"
class NginxClient : public BaseClient
{
public:
std::vector<DirEntry> ListDir(const std::string &path);
};
#endif