From f9f755cacaa477997a5e2a547fab0182aca03c99 Mon Sep 17 00:00:00 2001 From: HuangYi Date: Sat, 11 Feb 2023 21:53:16 +0800 Subject: [PATCH] rm and ignore go.work for more info https://dev.to/gophers/what-are-go-workspaces-and-how-do-i-use-them-1643 https://github.com/golang/go/issues/53502#issuecomment-1204134618 --- .gitignore | 2 ++ go.work | 6 ------ 2 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 go.work diff --git a/.gitignore b/.gitignore index 13b1a92df7..a8567ea8f6 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ release/ __pycache__ /dist /vendor +go.work +go.work.sum # nix /result diff --git a/go.work b/go.work deleted file mode 100644 index 41b9cea471..0000000000 --- a/go.work +++ /dev/null @@ -1,6 +0,0 @@ -go 1.20 - -use ( - . - ./versiondb -)