aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/start_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/start_service.cpp')
-rw-r--r--utils/start_service.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/utils/start_service.cpp b/utils/start_service.cpp
deleted file mode 100644
index 09b5b35..0000000
--- a/utils/start_service.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * \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/all.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;
-}