From f8a2a83d599a2e4f5e43e328c9c7a1a174cbc34d Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Wed, 12 Jun 2024 14:44:18 +0300 Subject: [PATCH] adding package --- Makefile | 2 +- go.work | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5370579cffc..95f48a6284a 100644 --- a/Makefile +++ b/Makefile @@ -379,7 +379,7 @@ protobuf: ## Compile protobuf definitions # buf generate pkg/plugins/backendplugin/pluginextensionv2 --template pkg/plugins/backendplugin/pluginextensionv2/buf.gen.yaml # buf generate pkg/plugins/backendplugin/secretsmanagerplugin --template pkg/plugins/backendplugin/secretsmanagerplugin/buf.gen.yaml # buf generate pkg/services/store/entity --template pkg/services/store/entity/buf.gen.yaml - buf generate pkg/services/store/resource --template pkg/services/store/resource/buf.gen.yaml + buf generate pkg/storage/api --template pkg/storage/api/buf.gen.yaml .PHONY: clean clean: ## Clean up intermediate build artifacts. diff --git a/go.work b/go.work index 52ee802a47f..c45ca2146fb 100644 --- a/go.work +++ b/go.work @@ -6,6 +6,7 @@ use ( ./pkg/apiserver ./pkg/build/wire ./pkg/promlib + ./pkg/storage/api ./pkg/util/xorm )