edit : 오타 수정

This commit is contained in:
2025-08-07 13:38:39 +09:00
parent 90609c08b8
commit 5c20b9ccb5
3 changed files with 31 additions and 7 deletions

View File

@@ -1,3 +1,5 @@
import os
class Config:
def __init__(self):
self.set_ict()
@@ -25,13 +27,15 @@ class Config:
self.sftp_id = "fermat"
self.sftp_pw = "fermat3514"
import os
if not os.path.exists(self.remote_folder):
os.makedirs(self.remote_folder)
def set_ict(self):
self.config = 'release'
self.local_folder = "./result" # 결과물 저장 폴더
if not os.path.exists(self.local_folder):
os.makedirs(self.local_folder)
rest_config = Config()
# rest_config.set_dev()