all repos — searchix @ 2430f46a9948b38b06880606a95dec357d01f619

Search engine for NixOS, nix-darwin, home-manager and NUR users

feat: render markdown in option descriptions

Alan Pearce
commit

2430f46a9948b38b06880606a95dec357d01f619

parent

158904f480e558ca00f680e7c577bb6329605eff

1 file changed, 37 insertions(+), 0 deletions(-)

changed files
A process/main.go
@@ -0,0 +1,37 @@
+package main + +import ( + "log" + "log/slog" + "os" + "searchix/internal/options" + + "github.com/ardanlabs/conf/v3" + "github.com/pkg/errors" +) + +type Config struct { + Input string `conf:"short:i,required,help:NixOS options file (json)"` + Output string `conf:"short:o,default:/dev/stdout"` +} + +func main() { + if os.Getenv("DEBUG") != "" { + slog.SetLogLoggerLevel(slog.LevelDebug) + } + log.SetFlags(0) + + config := Config{} + help, err := conf.Parse("", &config) + if err != nil { + if errors.Is(err, conf.ErrHelpWanted) { + log.Fatalln(help) + } + log.Fatalf("parsing command line: %v", err) + } + + err = options.Process(config.Input, config.Output) + if err != nil { + log.Fatalf("Error processing file: %v", err) + } +}