feat: 초기 프로젝트 구조 추가

This commit is contained in:
Kim Min Jae
2026-06-10 16:18:41 +09:00
parent 5d985560c5
commit a48a4b5fe5
100 changed files with 10530 additions and 0 deletions

9
check_build.py Normal file
View File

@@ -0,0 +1,9 @@
import os
dist_path = "E:/ANT/dist/reflector_inspector.exe"
if os.path.exists(dist_path):
size_mb = os.path.getsize(dist_path) / (1024 * 1024)
print(f"빌드 성공: {dist_path}")
print(f"파일 크기: {size_mb:.1f} MB")
else:
print("빌드 실패: exe 파일이 없음")