From 882426cc4845197349241ad7bb1e63c4e9e9a8b9 Mon Sep 17 00:00:00 2001 From: dmt <> Date: Tue, 1 Oct 2019 20:54:16 +0200 Subject: [PATCH] Define the general cml domain. --- cml/domain/__init__.py | 12 ++++++++++++ cml/domain/construction.py | 5 +++++ cml/domain/deconstruction.py | 5 +++++ cml/domain/reconstruction.py | 5 +++++ 4 files changed, 27 insertions(+) create mode 100644 cml/domain/construction.py create mode 100644 cml/domain/deconstruction.py create mode 100644 cml/domain/reconstruction.py diff --git a/cml/domain/__init__.py b/cml/domain/__init__.py index e69de29..5f70d4e 100644 --- a/cml/domain/__init__.py +++ b/cml/domain/__init__.py @@ -0,0 +1,12 @@ +from cml.domain.data_source import * +from cml.domain.construction import * +from cml.domain.reconstruction import * +from cml.domain.deconstruction import * + + +__all__ = ( + data_source.__all__ + + construction.__all__ + + reconstruction.__all__ + + deconstruction.__all__ +) \ No newline at end of file diff --git a/cml/domain/construction.py b/cml/domain/construction.py new file mode 100644 index 0000000..c6f45be --- /dev/null +++ b/cml/domain/construction.py @@ -0,0 +1,5 @@ + + +__all__ = ( + +) diff --git a/cml/domain/deconstruction.py b/cml/domain/deconstruction.py new file mode 100644 index 0000000..c6f45be --- /dev/null +++ b/cml/domain/deconstruction.py @@ -0,0 +1,5 @@ + + +__all__ = ( + +) diff --git a/cml/domain/reconstruction.py b/cml/domain/reconstruction.py new file mode 100644 index 0000000..c6f45be --- /dev/null +++ b/cml/domain/reconstruction.py @@ -0,0 +1,5 @@ + + +__all__ = ( + +) -- GitLab