mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-28 21:07:59 +03:00
20 lines
315 B
C++
20 lines
315 B
C++
#ifndef AUTOINDEX_HPP
|
|
#define AUTOINDEX_HPP
|
|
|
|
#include "webserv.hpp"
|
|
|
|
class Autoindex
|
|
{
|
|
private:
|
|
|
|
public:
|
|
Autoindex();
|
|
static std::string getPage(std::string path, std::string host);
|
|
static std::string getReference(std::string file, std::string dir, std::string host);
|
|
~Autoindex();
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif |