com.hltech.judged.server.App   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A main(String[]) 0 2 1
1
package com.hltech.judged.server;
2
3
import org.springframework.boot.SpringApplication;
4
import org.springframework.boot.autoconfigure.SpringBootApplication;
5
6
/**
7
 * Main executable
8
 */
9
@SpringBootApplication
10
public class App {
11
12
    public static void main(String[] args) {
13
        SpringApplication.run(App.class, args);
14
    }
15
16
}
17