From 0b786908c0a37eae087aff204d54b6f9b97fa2f1 Mon Sep 17 00:00:00 2001 From: Furkan Date: Tue, 4 May 2021 14:53:09 +0300 Subject: [PATCH] doc: add missing namespaces package Currently, we can not reproduce the given Namespaces section examples written in the README, since it's not clear to which package should we import to. Signed-off-by: Furkan Turkal --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1ecec1ff0..9d2821bf6 100644 --- a/README.md +++ b/README.md @@ -77,8 +77,11 @@ containerd offers a full client package to help you integrate containerd into yo ```go import ( + "context" + "github.com/containerd/containerd" "github.com/containerd/containerd/cio" + "github.com/containerd/containerd/namespaces" )