补丁操作结果
| 35 | |
| 36 | |
| 37 | class PatchResult: |
| 38 | """补丁操作结果""" |
| 39 | def __init__(self, success: bool = False, message: str = "", file_path: str = "", backup_path: str = ""): |
| 40 | self.success = success |
| 41 | self.message = message |
| 42 | self.file_path = file_path |
| 43 | self.backup_path = backup_path |
| 44 | |
| 45 | |
| 46 | class PatchManager: |
no outgoing calls
no test coverage detected