From 5ecc7ca52b59cfddc3ebcff8fce0ffb979ba3a37 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Tue, 18 Apr 2017 07:07:51 +0200 Subject: [PATCH] Drop old container manage entry point --- src/container_main.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/container_main.cpp diff --git a/src/container_main.cpp b/src/container_main.cpp deleted file mode 100644 index cbfe9b8..0000000 --- a/src/container_main.cpp +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (C) 2016 Simon Fels - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 3, as published - * by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranties of - * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR - * PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program. If not, see . - * - */ - -#include "anbox/container/service.h" - -int main(int argc, char **argv) { - (void)argc; - (void)argv; - anbox::container::Service service; - - return 0; -}