15 lines
434 B
Java
15 lines
434 B
Java
|
|
package com.labelsys.backend;
|
||
|
|
|
||
|
|
import org.mybatis.spring.annotation.MapperScan;
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
|
||
|
|
@SpringBootApplication
|
||
|
|
@MapperScan("com.labelsys.backend.mapper")
|
||
|
|
public class LabelsysBackendApplication {
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(LabelsysBackendApplication.class, args);
|
||
|
|
}
|
||
|
|
}
|