aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.ru>2022-07-04 15:01:58 +0300
committerudovichenko-r <udovichenko-r@yandex-team.ru>2022-07-04 15:01:58 +0300
commit895dd132daa7c14df1dc15b9b221e99266b71b58 (patch)
tree9f3be2bc85bc0ae4211a988ca2ace08fd9622bb0
parent7f55e2bc72e1728644baded066cbd9ed46e53af4 (diff)
downloadydb-895dd132daa7c14df1dc15b9b221e99266b71b58.tar.gz
[KIKIMR-15108] Drop unused file
ref:1d5442c70cd64c71863cf08c5b273f53b41cc279
-rw-r--r--ydb/library/yql/core/file_storage/file_exporter.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/ydb/library/yql/core/file_storage/file_exporter.h b/ydb/library/yql/core/file_storage/file_exporter.h
deleted file mode 100644
index 0634c2e1cca..00000000000
--- a/ydb/library/yql/core/file_storage/file_exporter.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include <ydb/library/yql/core/file_storage/proto/file_storage.pb.h>
-#include <library/cpp/uri/http_url.h>
-
-namespace NYql {
-
-class IFileExporter {
-public:
- virtual std::pair<ui64, TString> ExportToFile(const TFileStorageConfig& Config,
- const TString& convertedUrl,
- const THttpURL& url,
- const TString& dstFile) = 0;
- virtual ~IFileExporter() {}
-};
-
-std::unique_ptr<IFileExporter> CreateFileExporter();
-
-};