2026-08-16 20:07:50 +07:00
|
|
|
package aplp.backend.web;
|
2026-08-11 23:11:17 +07:00
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
@ConfigurationPropertiesScan
|
2026-08-16 20:07:50 +07:00
|
|
|
public class AplpBackendWebApplication {
|
2026-08-11 23:11:17 +07:00
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2026-08-16 20:07:50 +07:00
|
|
|
SpringApplication.run(AplpBackendWebApplication.class, args);
|
2026-08-11 23:11:17 +07:00
|
|
|
}
|
|
|
|
|
}
|