results to status

This commit is contained in:
Daniel 2023-12-11 00:41:07 +01:00
parent 27a0ff8a2e
commit 093818bc81
2 changed files with 11 additions and 6 deletions

View file

@ -37,6 +37,7 @@ class DirManager:
self.STATES,
self.ENV_FILES,
self.RESULTS,
self.STATUS,
]
for d in dirs:
d.mkdir(exist_ok=True)
@ -69,6 +70,10 @@ class DirManager:
def RESULTS(self):
return self.SESSION / "results"
@property
def STATUS(self):
return self.SESSION / "status"
@property
def RECIPES(self):
return self.recipes_dir