Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
csikb authored Mar 3, 2024
1 parent b0914ba commit d83fcfa
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,31 @@ title: Project structure
classDiagram
direction TB
namespace server {
class src
class web
class operation
class service
class model
class data
class common
}
integration ..> client
client ..> operation
integration ..> data
web ..> operation
web ..> service
service ..> data
operation ..> model
model ..> common
data ..> common
service ..> model
integration ..> client
src ..> web
%% namespace server {
%% class src
%% class web
%% class operation
%% class service
%% class model
%% class data
%% }
```
> Note: client can only access operation, model, common. No business code
> Note: integration can only access client (with everything mentioned above) and data. No business code
## Development

Expand Down

0 comments on commit d83fcfa

Please sign in to comment.