1
zj
2024-10-11 9ed28183ca391eadb7b5cb2f3160e3ec852da124
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.example.geteclient;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
 
@EnableScheduling
@SpringBootApplication
public class GeteClientApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(GeteClientApplication.class, args);
    }
 
}