luoyb
2021-01-31 8d58bd6128cac637d6a78378b2f00104052d4426
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cc.mrbird.febs.tx.manager;
 
import com.codingapi.txlcn.tm.config.EnableTransactionManagerServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
/**
 * @author MrBird
 */
@SpringBootApplication
@EnableTransactionManagerServer
public class FebsTxManagerApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(FebsTxManagerApplication.class, args);
    }
 
}