Add namespace

This commit is contained in:
Pablu23
2024-07-11 18:34:11 +02:00
parent e9a7062c07
commit 87b717545b
10 changed files with 34 additions and 12 deletions

View File

@@ -5,6 +5,7 @@
#include <optional>
#include <string>
namespace http {
class Path {
private:
// std::string m_path;
@@ -19,5 +20,6 @@ public:
std::string Base();
void Match(std::string pattern);
};
} // namespace http
#endif // !PATH_H