mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-06-10 11:17:00 +08:00
17 lines
418 B
Java
17 lines
418 B
Java
package com.yomahub.flowtest;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
@SpringBootApplication
|
|
public class FlowtestApplication {
|
|
|
|
public static void main(String[] args) {
|
|
try{
|
|
SpringApplication.run(FlowtestApplication.class, args);
|
|
}catch (Throwable t){
|
|
t.printStackTrace();
|
|
}
|
|
}
|
|
}
|