Alan
2021-02-23 cdb1aa3c031961b4866bc28729af4a816e0b8479
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);
    }
 
}