From 96aaf5a3b2a13962e07c1dfbdedecb5915a69911 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Thu, 30 Nov 2023 15:41:07 -0800 Subject: [PATCH] Add core and internal root packages Signed-off-by: Derek McGowan --- CONTRIBUTING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6c91c3277..f6f655f74 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,9 +59,11 @@ configuration and build files, no source files will be accepted in root since co - `client` - All Go files for the containerd client (formerly in `containerd/containerd` root in 1.x) - `cmd` - All Go main packages and the packages used only for that main package - `contrib` - Files, configurations, and packages related to external tools or libraries +- `core` - Core Go packages with interface definitions and built-in implementations - `docs` - All containerd technical documentation using markdown +- `internal` - All utility packages used by containerd and not intended for direct import - `man`- All containerd reference manuals used for the `man` command -- `pkg` - All Go packages shared and used by other containerd packages. +- `pkg` - Non-core Go packages used by clients and other containerd packages - `plugins` - All included containerd plugins which are registered via init - `releases` - All release note files - `script` - All scripts used for testing, development, and CI