Improved structure and added basics for database module
This commit is contained in:
@@ -2,9 +2,9 @@ import traceback
|
||||
from typing import Optional
|
||||
|
||||
from sh_edraft.configuration.base.configuration_model_base import ConfigurationModelBase
|
||||
from sh_edraft.publishing.model import Template
|
||||
from sh_edraft.publishing.model.template import Template
|
||||
from sh_edraft.publishing.model.publish_settings_name import PublishSettingsName
|
||||
from sh_edraft.utils import Console
|
||||
from sh_edraft.utils.console import Console
|
||||
|
||||
|
||||
class PublishSettings(ConfigurationModelBase):
|
||||
|
@@ -21,6 +21,7 @@ class Template(ConfigurationModelBase):
|
||||
author: Optional[str] = None,
|
||||
version: Optional[dict] = None
|
||||
):
|
||||
ConfigurationModelBase.__init__(self)
|
||||
self._template_path: Optional[str] = template_path
|
||||
self._name: Optional[str] = name
|
||||
self._description: Optional[str] = description
|
||||
|
Reference in New Issue
Block a user