1
zj
2024-09-27 d51872d16007338a42099521bcb2d1460264b337
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);
    }
 
}