15 lines
319 B
Java
15 lines
319 B
Java
|
package com.qzing.ime.abnl;
|
||
|
|
||
|
|
||
|
import com.qzing.ime.framework.EnableImeServiceApplication;
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
|
||
|
@EnableImeServiceApplication
|
||
|
public class StartApplication {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(StartApplication.class, args);
|
||
|
}
|
||
|
|
||
|
}
|