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

#include <string>

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

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

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