1
zj
2024-10-17 708e35e4df613836db1289820d82ab0377bf0442
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);
    }
 
}