blob: f621175af50fd3aa3a56c6250ac6efb552503edb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <yql/essentials/udfs/common/python/python_udf/python_udf.h>
namespace NPython {
void PrepareYqlModule();
void InitYqlModule(NYql::NUdf::EPythonFlavor pythonFlavor, bool standalone = true);
void TermYqlModule();
} // namespace NPython
|