aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/vespa/vespaclient/spoolmaster/main.cpp
blob: 40a262734bf2946b229ce257815909a405e543c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "application.h"

int
main(int argc, char** argv)
{
    spoolmaster::Application *app = new spoolmaster::Application();
    int retVal = app->Entry(argc, argv);
    delete app;
    return retVal;
}