udf_tz.h 163 B

1234567891011
  1. #pragma once
  2. #include <util/generic/array_ref.h>
  3. #include <string_view>
  4. namespace NYql {
  5. namespace NUdf {
  6. TArrayRef<const std::string_view> GetTimezones();
  7. }
  8. }