aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/stat/static/static_udf.cpp
blob: 3cb1d88a1c860c3669370883ffd16f960ce3d9c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "stat_udf.h"

namespace NYql {
    namespace NUdf {
        NUdf::TUniquePtr<NUdf::IUdfModule> CreateStatModule() {
            return new TStatModule();
        }

    }
}