From b5ad01cdfe566938baab826b932cf13bfff0a3f8 Mon Sep 17 00:00:00 2001 From: localai-org-maint-bot <306269227+localai-org-maint-bot@users.noreply.github.com> Date: Thu, 10 Sep 2026 03:08:53 +0000 Subject: [PATCH] fix(deps): resolve proto before code generation Dependabot runs go mod tidy without generating backend RPC types. Keep a tracked package declaration so it resolves the local package instead of searching for a nonexistent external module. Assisted-by: Codex:gpt-6 --- pkg/grpc/proto/doc.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pkg/grpc/proto/doc.go diff --git a/pkg/grpc/proto/doc.go b/pkg/grpc/proto/doc.go new file mode 100644 index 000000000..0a6b94b25 --- /dev/null +++ b/pkg/grpc/proto/doc.go @@ -0,0 +1,6 @@ +// Package proto contains the generated backend RPC types. +// +// Keep this declaration in source control so go mod tidy can resolve the local +// package before make protogen-go generates its implementation. Dependabot runs +// module discovery without running code generation. +package proto