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

17 lines
316 B
C++

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