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