main.go   A
last analyzed

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 9
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A main.main 0 4 2
1
package main
2
3
import (
4
	"adrianolaselva.github.io/csvql/cmd"
5
	"fmt"
6
	"os"
7
)
8
9
func main() {
10
	if err := cmd.New().Execute(); err != nil {
11
		fmt.Fprintf(os.Stderr, "%s\n", err.Error())
12
		os.Exit(1)
13
	}
14
}
15