1
zj
2025-07-15 e816946bb6e8f6b88045e565a3368c2367e7158a
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);
    }
 
}