mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-26 20:09:30 +08:00
23 lines
656 B
Java
23 lines
656 B
Java
/**
|
|
* This file is part of the PlayEdu.
|
|
* (c) 杭州白书科技有限公司
|
|
*/
|
|
package xyz.playedu.api;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
import xyz.playedu.api.config.UniqueNameGenerator;
|
|
|
|
@SpringBootApplication
|
|
@EnableAsync
|
|
@ComponentScan(nameGenerator = UniqueNameGenerator.class)
|
|
public class PlayeduApiApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(PlayeduApiApplication.class, args);
|
|
}
|
|
}
|