blob: c5401ff334240be39fedc15f4c7eff3a24f3536a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "runtime_settings.h"
#include <util/system/types.h>
#include <array>
namespace NYql {
using TRuntimeSettingsStableHash = TString;
TRuntimeSettingsStableHash StableHashRuntimeSettings(const TRuntimeSettings& config);
} // namespace NYql
|