docs: document remaining packages and simplify AST types #45

Merged
mvhutz merged 15 commits from docs/rest into main 2026-02-10 01:15:42 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 4171f0ccb2 - Show all commits

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()
}, },
} }