20 lines
425 B
Java
20 lines
425 B
Java
|
|
package com.celnet.datadump;
|
||
|
|
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
public class DataDumpApplication {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
try {
|
||
|
|
SpringApplication.run(DataDumpApplication.class, args);
|
||
|
|
} catch (Throwable th) {
|
||
|
|
th.printStackTrace();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|