mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
8 lines
237 B
C++
8 lines
237 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
|
|
/// Get resource from binary if exists. Otherwise return empty string view.
|
|
/// Resources are data that is embedded into executable at link time.
|
|
std::string_view getResource(std::string_view name);
|