aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/vespa/vespaclient/vesparoute/main.cpp
blob: 6ba6bb112a5064648c28ca07bf845ebb5ae2eedb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "application.h"
#include <vespa/vespalib/util/signalhandler.h>

int main(int argc, char** argv) {
    vespalib::SignalHandler::PIPE.ignore();
    vesparoute::Application app;
    int ret = app.main(argc, argv);
    if (ret) {
        printf("Non-zero exit status: %d\n", ret);
    }
    return ret;
}