aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/http/http_static.h
blob: f91e15dfb10b006c9e4b6790dc8b20da0bd8fdec (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());

}