2026-05-31 15:43:09 +09:00
|
|
|
package com.sb.web;
|
2026-05-30 21:18:35 +09:00
|
|
|
|
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2026-06-06 08:12:57 +09:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2026-05-30 21:18:35 +09:00
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2026-06-06 08:12:57 +09:00
|
|
|
@EnableScheduling
|
2026-06-06 00:15:57 +09:00
|
|
|
@MapperScan({"com.sb.web.user.mapper", "com.sb.web.auth.mapper", "com.sb.web.board.mapper", "com.sb.web.account.mapper", "com.sb.web.admin.mapper"})
|
2026-05-30 21:18:35 +09:00
|
|
|
public class SbBtApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(SbBtApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|