Added cpl-mail
All checks were successful
All checks were successful
This commit is contained in:
@@ -14,24 +14,28 @@ jobs:
|
|||||||
|
|
||||||
core:
|
core:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_core
|
working_directory: src/cpl_core
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
query:
|
query:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_query
|
working_directory: src/cpl_query
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
translation:
|
translation:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_translation
|
working_directory: src/cpl_translation
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
mail:
|
mail:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_mail
|
working_directory: src/cpl_mail
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@@ -12,24 +12,28 @@ jobs:
|
|||||||
|
|
||||||
core:
|
core:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_core
|
working_directory: src/cpl_core
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
query:
|
query:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_query
|
working_directory: src/cpl_query
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
translation:
|
translation:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_translation
|
working_directory: src/cpl_translation
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
mail:
|
mail:
|
||||||
uses: ./.gitea/workflows/package.yaml
|
uses: ./.gitea/workflows/package.yaml
|
||||||
|
needs: [prepare]
|
||||||
with:
|
with:
|
||||||
working_directory: src/cpl_mail
|
working_directory: src/cpl_mail
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
from abc import abstractmethod, ABC
|
from abc import abstractmethod, ABC
|
||||||
|
|
||||||
from cpl_mail.email import EMail
|
from cpl_mail.email_model import EMail
|
||||||
|
|
||||||
|
|
||||||
class EMailClientABC(ABC):
|
class EMailClientABC(ABC):
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ from cpl_core.environment.application_environment_abc import ApplicationEnvironm
|
|||||||
from cpl_core.log.logger_abc import LoggerABC
|
from cpl_core.log.logger_abc import LoggerABC
|
||||||
from cpl_core.utils.credential_manager import CredentialManager
|
from cpl_core.utils.credential_manager import CredentialManager
|
||||||
from cpl_mail.abc.email_client_abc import EMailClientABC
|
from cpl_mail.abc.email_client_abc import EMailClientABC
|
||||||
from cpl_mail.email import EMail
|
from cpl_mail.email_model import EMail
|
||||||
from cpl_mail.email_client_settings import EMailClientSettings
|
from cpl_mail.email_client_settings import EMailClientSettings
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user