[Enhancement] 도메인 파일 경로를 './data/domains.txt'로 변경

This commit is contained in:
암냥 2025-06-18 21:18:01 +09:00
commit 29d91bac56
4 changed files with 4 additions and 4 deletions

View file

@ -176,7 +176,7 @@ async def scan_one_url(url: str, skip_html_check: bool = False):
print("-" * 50)
# CSV에 저장 (append)
csv_file = "./oauth_providers.csv"
csv_file = "./data/oauth_providers.csv"
file_exists = os.path.isfile(csv_file)
with open(csv_file, "a", newline="", encoding="utf-8") as f:
writer = csv.writer(f)