mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-08 02:04:04 +08:00
17 lines
469 B
Java
17 lines
469 B
Java
package xyz.playedu.api;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
@SpringBootApplication
|
|
@EnableAsync
|
|
public class PlayeduApiApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(PlayeduApiApplication.class, args);
|
|
}
|
|
|
|
}
|