about summary refs log tree commit diff stats
path: root/process/main.go
blob: 3c9b67af446a690a3cfb46cd7e889b5e741c8cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)
	}
}