From 55300abf0392354fc1c40ff182107120c8f55fcc Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Mon, 13 Feb 2023 21:42:35 +0100 Subject: [PATCH] chore: adding go.work and go.work.sum to gitignore (#3109) --- .gitignore | 3 +++ go.work.example | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 go.work.example diff --git a/.gitignore b/.gitignore index e821f35d7e7..1844a2347f6 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,6 @@ dependency-graph.png *.history +# Go +go.work +go.work.sum \ No newline at end of file diff --git a/go.work.example b/go.work.example new file mode 100644 index 00000000000..5481cb3c915 --- /dev/null +++ b/go.work.example @@ -0,0 +1,6 @@ +go 1.19 + +use ( + ./ + ./e2e +)