__init__.py (removed)

Last source

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
"""Package to handle isshub entities for domain code_repository context."""

# Order is important so we disable isort for this file
# isort:skip_file

# Stop flake8 warning us than these imports are not used
# flake8: noqa

from .namespace import Namespace
from .repository import Repository

Changes

refactor(core): Rename core domain context to code_repository

Commit
Hash

07e279b370c0924f2b2cf32aea016b307001dfa0

Date

2019-08-15 23:31:33 +0200

Type

Renamed

New path

isshub/domain/contexts/code_repository/entities/__init__.py

Stats

+1 -1

@@ -1,4 +1,4 @@
-"""Package to handle isshub entities for domain core context."""
+"""Package to handle isshub entities for domain code_repository context."""

 # Order is important so we disable isort for this file
 # isort:skip_file

feat(namespace): Add Namespace entity in core domain context

Commit
Hash

3a2dd3cc6f6de1fa1b03db95eaa357628824f075

Date

2019-06-07 21:03:50 +0200

Type

Modified

Stats

+9 -0

@@ -1 +1,10 @@
 """Package to handle isshub entities for domain core context."""
+
+# Order is important so we disable isort for this file
+# isort:skip_file
+
+# Stop flake8 warning us than these imports are not used
+# flake8: noqa
+
+from .namespace import Namespace
+from .repository import Repository

feat(repository): Add 1st domain context (core) and entity (Repository)

Commit
Hash

37d8930e4da80b776842d3834d6bf81f860c5692

Date

2019-06-07 21:03:50 +0200

Type

Added

Stats

+1 -0

@@ -0,0 +1 @@
+"""Package to handle isshub entities for domain core context."""