File: main.go

package info (click to toggle)
jqp 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: makefile: 8
file content (15 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
	"os"

	"github.com/noahgorstein/jqp/cmd"
)

func main() {
	err := cmd.Execute()
	if err != nil {
		// error is discarded as cobra already reported it
		os.Exit(1)
	}
}