docs: cmd/lambda

This commit is contained in:
2026-02-07 21:05:04 -05:00
parent 1fcffb2ea4
commit 4171f0ccb2
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
// Package main defines the 'lambda' command-line interface (CLI).
package main package main
import ( import (

View File

@@ -9,7 +9,7 @@ func LambdaEngine() *cobra.Command {
Use: "engine", Use: "engine",
Aliases: []string{"eng"}, Aliases: []string{"eng"},
Short: "Information about available engines", Short: "Information about available engines",
RunE: func(cmd *cobra.Command, args []string) error { RunE: func(cmd *cobra.Command, _ []string) error {
return cmd.Help() return cmd.Help()
}, },
} }