feat: Refactor monolith to microservices architecture

This commit is contained in:
jade
2026-07-05 17:27:44 +09:00
parent 367a47516d
commit 10f3f0513d
200 changed files with 541 additions and 1789 deletions

18
fix_build.py Normal file
View File

@@ -0,0 +1,18 @@
import os
lombok_deps = """
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
}
"""
modules = ["axhub-common", "axhub-gateway", "axhub-tool-core", "axhub-tool-sms", "axhub-tool-email", "axhub-tool-other"]
for m in modules:
build_gradle_path = os.path.join(m, "build.gradle")
if os.path.exists(build_gradle_path):
with open(build_gradle_path, "a", encoding="utf-8") as f:
f.write(lombok_deps)
print("Lombok added to all modules.")