summaryrefslogtreecommitdiffstats
path: root/yt/yql/tools/ytrun/ytrun.cpp
blob: e3036198c7f9123a54e81d6c5204b73434d18018 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <yt/yql/tools/ytrun/lib/ytrun_lib.h>
#include <util/generic/yexception.h>

int main(int argc, const char *argv[]) {
    try {
        return NYql::TYtRunTool().Main(argc, argv);
    }
    catch (...) {
        Cerr << CurrentExceptionMessage() << Endl;
        return 1;
    }
}