refactor: unify project handling (cmdline = projects/default)

This commit is contained in:
Dobin
2024-03-29 20:29:33 +00:00
parent 70eb0bf798
commit 4410685d0d
7 changed files with 53 additions and 44 deletions
+1 -8
View File
@@ -4,15 +4,8 @@ import yaml
import pickle
from typing import List, Tuple
from model.settings import Settings
from model.defs import *
class WebProject():
def __init__(self, name: str, settings: Settings):
self.name = name
self.settings: Settings = settings
self.comment: str = ""
from model.project import WebProject
class Storage():