2024-02-11 13:12:10 +00:00
|
|
|
package kr.gmtc.gw.eyegw;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2024-07-14 03:40:48 +00:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2024-02-11 13:12:10 +00:00
|
|
|
|
2024-07-14 03:40:48 +00:00
|
|
|
@EnableScheduling
|
2024-02-11 13:12:10 +00:00
|
|
|
@SpringBootApplication
|
|
|
|
public class EyeGWApplication {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringApplication.run(EyeGWApplication.class, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|