cmd/keeper: stub should panic

This commit is contained in:
Felix Lange 2025-09-15 18:14:06 +02:00
parent 94aec60a94
commit 7ba31d5f3c

View file

@ -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")
}