http_static.h 254 B

123456789
  1. #pragma once
  2. #include <library/cpp/actors/core/actor.h>
  3. #include "http.h"
  4. namespace NHttp {
  5. NActors::IActor* CreateHttpStaticContentHandler(const TString& url, const TString& filePath, const TString& resourcePath, const TString& index = TString());
  6. }