blob: b2bda6886996b596d36c2bd22b6f7a4721c5e4a3 [file] [log] [blame]
Ed Tanous904063f2017-03-02 16:48:24 -08001#pragma once
2
3#include <string>
4
Ed Tanous99923322017-03-03 14:21:24 -08005#include <crow/app.h>
Ed Tanous904063f2017-03-02 16:48:24 -08006#include <crow/http_request.h>
7#include <crow/http_response.h>
Ed Tanous904063f2017-03-02 16:48:24 -08008
Ed Tanous99923322017-03-03 14:21:24 -08009// TODO this is wrong. file handler shouldn't care about middlewares
Ed Tanous904063f2017-03-02 16:48:24 -080010#include <crow/routing.h>
Ed Tanous99923322017-03-03 14:21:24 -080011#include "token_authorization_middleware.hpp"
Ed Tanous904063f2017-03-02 16:48:24 -080012
Ed Tanous99923322017-03-03 14:21:24 -080013namespace crow {
14namespace webassets {
15void request_routes(crow::App<crow::TokenAuthorizationMiddleware>& app);
Ed Tanous904063f2017-03-02 16:48:24 -080016}
17}