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

main(String[])   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
dl 0
loc 2
rs 10
c 1
b 0
f 0
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