From 7ba31d5f3c30b58306e52ae66dc539028b409443 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 15 Sep 2025 18:14:06 +0200 Subject: [PATCH] cmd/keeper: stub should panic --- cmd/keeper/stubs.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/keeper/stubs.go b/cmd/keeper/stubs.go index 4f92028240..04a3bc735b 100644 --- a/cmd/keeper/stubs.go +++ b/cmd/keeper/stubs.go @@ -22,6 +22,5 @@ package main // This allows golangci-lint to typecheck the code without errors. // The actual implementations are provided in platform-specific files. func getInput() []byte { - // This is a no-op stub - real implementations are in platform-specific files - return nil + panic("stub") }