From e4d0b2ca22416308bae4d030a8bf1e513c18c9f2 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 17 Jan 2024 01:21:22 -0500 Subject: [PATCH] feat: use go.work for development purposes This makes it so we don't have to fake download dependencies for development, allowing for a better experience in your local editor. --- go.work | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 go.work diff --git a/go.work b/go.work new file mode 100644 index 000000000..ff476b8fc --- /dev/null +++ b/go.work @@ -0,0 +1,24 @@ +go 1.21.3 + +use ( + ./plugins/app-json + ./plugins/apps + ./plugins/builder + ./plugins/buildpacks + ./plugins/common + ./plugins/config + ./plugins/cron + ./plugins/docker-options + ./plugins/logs + ./plugins/network + ./plugins/nginx-vhosts + ./plugins/ports + ./plugins/proxy + ./plugins/ps + ./plugins/registry + ./plugins/repo + ./plugins/resource + ./plugins/scheduler + ./plugins/scheduler-docker-local + ./plugins/scheduler-k3s +)