diff options
author | Michael Muré <batolettre@gmail.com> | 2022-08-20 11:01:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 11:01:37 +0200 |
commit | 855684149740e2fb8eec21f3d97df2eba39b27c5 (patch) | |
tree | a3bd60a9f533fc6fc11a094038d095510210cd23 /doc | |
parent | 58df94d38d754bff4dcca11e2ae4b99326a9a87e (diff) | |
parent | 8818d091e85087766d7f493b7dfaf1aedc3a4ab0 (diff) | |
download | git-bug-855684149740e2fb8eec21f3d97df2eba39b27c5.tar.gz |
Merge pull request #856 from MichaelMure/common-status
move bug.Status in entities/common for reuse
Diffstat (limited to 'doc')
-rw-r--r-- | doc/architecture.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/architecture.md b/doc/architecture.md index 5d1b2194..5f81462b 100644 --- a/doc/architecture.md +++ b/doc/architecture.md @@ -40,7 +40,7 @@ Those interfaces are implemented by `GitRepo` as well as a mock for testing. ## identity -The package `identity` contains the identity data model and the related low-level functions. +The package `entities/identity` contains the identity data model and the related low-level functions. In particular, this package contains: - `Identity`, the fully-featured identity, holding a series of `Version` stored in its dedicated structure in git @@ -48,7 +48,7 @@ In particular, this package contains: ## bug -The package `bug` contains the bug data model and the related low-level functions. +The package `entities/bug` contains the bug data model and the related low-level functions. In particular, this package contains: - `Operation`, the interface to fulfill for an edit operation of a Bug |