Completed
Push — master ( dbd5a1...2daf05 )
by Roannel Fernández
03:23
created

com.github.netkorp.severalnamescommand.SeveralNamesCommandApplication   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A main(String[]) 0 2 1
1
package com.github.netkorp.severalnamescommand;
2
3
import org.springframework.boot.SpringApplication;
4
import org.springframework.boot.autoconfigure.SpringBootApplication;
5
6
@SpringBootApplication
7
public class SeveralNamesCommandApplication {
8
9
    public static void main(String[] args) {
10
        SpringApplication.run(SeveralNamesCommandApplication.class, args);
11
    }
12
13
}
14