// Package main provides the entry point for the gignore command-line tool, // which generates .gitignore files based on specified templates. package main import ( "flag" "fmt" "slices" "github.com/onyx-and-iris/gignore" log "github.com/sirupsen/logrus" ) func main() { flag.Usage = func() { w := flag.CommandLine.Output() fmt.Fprint(w, "Usage of gignore:\n") fmt.Fprintf(w, " gignore [flags]