You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
571 B

package com.bx.imserver;
3 years ago
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
@EnableAsync
@EnableScheduling
2 years ago
@ComponentScan(basePackages = {"com.bx"})
3 years ago
@SpringBootApplication
3 years ago
public class IMServerApp {
3 years ago
public static void main(String[] args) {
2 years ago
SpringApplication.run(IMServerApp.class, args);
3 years ago
}
}