From 10eaba3319288e5e272afbfece8e84f6f509877d Mon Sep 17 00:00:00 2001 From: Radoslav Georgiev Date: Sat, 25 Sep 2021 19:10:54 +0300 Subject: [PATCH] Add a diagram for the service layer --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2d5a9a7..899926c 100644 --- a/README.md +++ b/README.md @@ -367,6 +367,10 @@ Services are where business logic lives. The service layer speaks the specific domain language of the software, can access the database & other resources & can interact with other parts of your system. +Here's a very simple diagram, positioning the service layer in our Django apps: + +![Service layer](https://user-images.githubusercontent.com/387867/134778130-be168592-b953-4b74-8588-a3dbaa0b6871.png) + A service can be: - A simple function.