summaryrefslogtreecommitdiff
path: root/web/src/handlers.hpp
blob: 5321a46e532ee44b6162b223da9c759924cc1eda (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <optional>

#include "config.hpp"
#include "crow/http_response.h"

namespace botweb {
  crow::response get_wiki_page(const std::string &path,
                               const std::optional<Configuration> &cfg);
}