aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/http/http_static.h
blob: 04023ab1cda73f2013876bb142120fb59be86387 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include <library/cpp/actors/core/actor.h> 
#include "http.h"

namespace NHttp {

NActors::IActor* CreateHttpStaticContentHandler(const TString& url, const TString& filePath, const TString& resourcePath, const TString& index = TString());

}