EasyRetry Server 扩展模块

This commit is contained in:
dhb52
2024-03-13 23:09:45 +08:00
parent fb337f57b8
commit df5cbaaea8
24 changed files with 1858 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package org.dromara.easyretry;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* EasyRetry Server 启动程序
*
* @author dhb52
*/
@SpringBootApplication
public class EasyRetryServerApplication {
public static void main(String[] args) {
SpringApplication.run(com.aizuda.easy.retry.server.EasyRetryServerApplication.class, args);
}
}