From 3f1a4a6a343060fdf8630bdf6505a328e7957a1d Mon Sep 17 00:00:00 2001 From: Rick <1450685+LinuxSuRen@users.noreply.github.com> Date: Mon, 19 May 2025 09:32:00 +0800 Subject: [PATCH] docs: add an example of extension Signed-off-by: Rick <1450685+LinuxSuRen@users.noreply.github.com> --- docs/extension.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/extension.md b/docs/extension.md index d01e6c6c790..303342615e5 100644 --- a/docs/extension.md +++ b/docs/extension.md @@ -104,4 +104,8 @@ into its runtime environment. ## Down lifecycle `down` lifecycle is equivalent to `up` with the ` compose --project-name down ` command. -The provider is responsible for releasing all resources associated with the service. \ No newline at end of file +The provider is responsible for releasing all resources associated with the service. + +## Examples + +* [API Testing](https://github.com/LinuxSuRen/api-testing/blob/master/cmd/compose.go)