From d305e0ddfc8fafca4883d7165bd89ddba8719fd6 Mon Sep 17 00:00:00 2001 From: Skyxim Date: Wed, 29 Mar 2023 13:58:37 +0800 Subject: [PATCH] chore: with_gvisor output --- constant/features/with_gvisor.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 constant/features/with_gvisor.go diff --git a/constant/features/with_gvisor.go b/constant/features/with_gvisor.go new file mode 100644 index 00000000..1b3417b3 --- /dev/null +++ b/constant/features/with_gvisor.go @@ -0,0 +1,7 @@ +//go:build with_gvisor + +package features + +func init() { + TAGS = append(TAGS, "with_gvisor") +}