15 lines
455 B
Java
15 lines
455 B
Java
|
|
package com.quantai.trader;
|
||
|
|
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
@ConfigurationPropertiesScan
|
||
|
|
public class QuantTraderServiceApplication {
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(QuantTraderServiceApplication.class, args);
|
||
|
|
}
|
||
|
|
}
|