1
zj
2024-08-07 8ed60795a7c278f9699616f72eb05ce49800ba6f
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);
    }
 
}