From a4202ace5cdd75d87d6c0ffe54dd95efc6bac0b7 Mon Sep 17 00:00:00 2001 From: mfenderov Date: Fri, 5 Apr 2024 08:06:44 +0200 Subject: [PATCH] feat: img alt --- posts/20240404-de.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/posts/20240404-de.md b/posts/20240404-de.md index e2e0812..93a9302 100644 --- a/posts/20240404-de.md +++ b/posts/20240404-de.md @@ -167,7 +167,7 @@ in relation to something like Assembly language which is the lowest of them all. And so the dependency tree might look something like this: -![img.png](assets/04042024-di/pre_inversion.png) +![before inversion](assets/04042024-di/pre_inversion.png) Dependency direction goes with the direction of an arrow. Everything directly or transitively depends on `UserModule`. @@ -273,7 +273,7 @@ It abstracts the database on behalf of other modules. And so the direction of the dependency between `NotificationModule` and `UserModule` is inverted. Given that we apply the inversion to all dependencies; the dependency tree might look like this: -![img.png](assets/04042024-di/post_inversion.png) +![after inversion](assets/04042024-di/post_inversion.png) Not only the system no longer directly depends on `UserModule`. But the transitive dependencies are also much more relaxed.