From 0b22c48d2a8af70d132690697817ba9305b9a2e3 Mon Sep 17 00:00:00 2001 From: Peng Tao Date: Sat, 29 May 2021 10:25:29 +0800 Subject: [PATCH] runtime: remove unused doc.go It doesn't even contain any actual code there. Fixes: #1941 Signed-off-by: Peng Tao --- src/runtime/virtcontainers/doc.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/runtime/virtcontainers/doc.go diff --git a/src/runtime/virtcontainers/doc.go b/src/runtime/virtcontainers/doc.go deleted file mode 100644 index 2fad5d638..000000000 --- a/src/runtime/virtcontainers/doc.go +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) 2016 Intel Corporation -// -// SPDX-License-Identifier: Apache-2.0 -// - -/* -Package virtcontainers manages hardware virtualized containers. -Each container belongs to a set of containers sharing the same networking -namespace and storage, also known as a sandbox. - -Virtcontainers sandboxes are hardware virtualized, i.e. they run on virtual machines. -Virtcontainers will create one VM per sandbox, and containers will be created as -processes within the sandbox VM. - -The virtcontainers package manages both sandboxes and containers lifecycles. -*/ -package virtcontainers