d8bcdce879
commit 0d624137c2557c6eeb87020749e4977b821c2b5c Author: Adrien <adrien.cesaro@proton.me> Date: Thu Apr 9 11:55:22 2026 +0200 backend native image setup
19 lines
557 B
Java
19 lines
557 B
Java
package com.aiteacher;
|
|
|
|
import org.springframework.context.annotation.ImportRuntimeHints;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
import com.aiteacher.config.NativeHintsConfig;
|
|
|
|
@SpringBootApplication
|
|
@EnableAsync
|
|
@ImportRuntimeHints(NativeHintsConfig.class)
|
|
public class AiTeacherApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AiTeacherApplication.class, args);
|
|
}
|
|
}
|