summaryrefslogtreecommitdiff
path: root/include/webassets.hpp
blob: b2bda6886996b596d36c2bd22b6f7a4721c5e4a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <string>

#include <crow/app.h>
#include <crow/http_request.h>
#include <crow/http_response.h>

// TODO this is wrong.  file handler shouldn't care about middlewares
#include <crow/routing.h>
#include "token_authorization_middleware.hpp"

namespace crow {
namespace webassets {
void request_routes(crow::App<crow::TokenAuthorizationMiddleware>& app);
}
}