aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/utils/start_service.cpp
blob: 58b756df637942f92479cf6e3c40ccfb00402c1f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
   
        







                                                                       
                    
                   












                                                                                       
                                   





                                      
/**
 * \file
 * \author Egor Tensin <Egor.Tensin@gmail.com>
 * \date 2015
 * \copyright This file is licensed under the terms of the MIT License.
 *            See LICENSE.txt for details.
 */

#include "libservice/interface.hpp"

#include <exception>
#include <iostream>

int main(int argc, char* argv[])
{
    if (argc != 2)
    {
        std::cout << "Usage: " << argv[0] << " NAME\n";
        return 1;
    }

    try
    {
        libservice::Service::open(libservice::ServiceManager::open(), argv[1]).start();
    }
    catch (const std::exception& e)
    {
        std::cerr << e.what() << "\n";
        return 1;
    }
    return 0;
}