mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 17:16:25 +00:00
AI 서비스 메인 애플리케이션 클래스 추가
- AiApplication.java 생성 (독립 실행 가능한 Spring Boot 메인 클래스) - @SpringBootApplication 및 @ComponentScan 설정 - AI 및 Common 패키지 컴포넌트 스캔 구성 - 마이크로서비스 구조 완성 (User, Notification과 동일한 패턴) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
b8cd502c44
commit
8aaa25b16f
2
.gitignore
vendored
2
.gitignore
vendored
@ -7,4 +7,4 @@ reference/sampleimg/
|
|||||||
*copy.html
|
*copy.html
|
||||||
design/*copy.md
|
design/*copy.md
|
||||||
design/*/*copy.md
|
design/*/*copy.md
|
||||||
.claude\settings.local.json
|
.claude\settings.local.jsonexamples/
|
||||||
|
|||||||
18
ai/src/main/java/com/unicorn/hgzero/ai/AiApplication.java
Normal file
18
ai/src/main/java/com/unicorn/hgzero/ai/AiApplication.java
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
package com.unicorn.hgzero.ai;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AI Service Application
|
||||||
|
* AI 기반 회의록 분석 및 요약 서비스 메인 클래스
|
||||||
|
*/
|
||||||
|
@SpringBootApplication
|
||||||
|
@ComponentScan(basePackages = {"com.unicorn.hgzero.ai", "com.unicorn.hgzero.common"})
|
||||||
|
public class AiApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(AiApplication.class, args);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user