main.go   A
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A main.main 0 2 1
1
package main
2
3
import (
4
	"github.com/rchargel/hdfs-explorer/ui"
5
)
6
7
func main() {
8
	ui.Window.ShowAndRun()
9
}
10