Improved project structure

This commit is contained in:
2020-11-26 10:45:02 +01:00
parent ff2a7d9693
commit f2f797aaa3
30 changed files with 65 additions and 50 deletions

View File

@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
sh_edraft.publishing.model
sh_edraft.publishing.base
~~~~~~~~~~~~~~~~~~~
@@ -11,7 +11,7 @@ sh_edraft.publishing.model
"""
__title__ = 'sh_edraft.publishing.model'
__title__ = 'sh_edraft.publishing.base'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de'

View File

@@ -1,7 +1,7 @@
import traceback
from typing import Optional
from sh_edraft.configuration.model import ConfigurationModelBase
from sh_edraft.configuration.base.configuration_model_base import ConfigurationModelBase
from sh_edraft.publishing.model import Template
from sh_edraft.publishing.model.publish_settings_name import PublishSettingsName
from sh_edraft.utils import Console

View File

@@ -1,7 +1,7 @@
from typing import Optional
from sh_edraft.source_code.model.version import Version
from sh_edraft.configuration.model import ConfigurationModelBase
from sh_edraft.coding.model.version import Version
from sh_edraft.configuration.base.configuration_model_base import ConfigurationModelBase
from sh_edraft.publishing.model.template_enum import TemplateEnum