From 9a832b7119564ba5cf9f871f316118803dae856c Mon Sep 17 00:00:00 2001 From: iasoon Date: Tue, 12 Apr 2022 21:54:46 +0200 Subject: [PATCH] docs: add missing import to example AddHello action (#2154) Signed-off-by: Ilion Beyst --- docs/core-concepts/1221-action.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/core-concepts/1221-action.md b/docs/core-concepts/1221-action.md index 583b48de..e0cb2e53 100644 --- a/docs/core-concepts/1221-action.md +++ b/docs/core-concepts/1221-action.md @@ -44,6 +44,7 @@ Here is an example of a simple action definition: package hello import ( + "dagger.io/dagger" "dagger.io/dagger/core" )