From f6c8a74465b96e7c46b63c3789fb8e577b31894d Mon Sep 17 00:00:00 2001 From: devfzn Date: Fri, 22 Apr 2022 03:41:27 -0400 Subject: [PATCH] edit readme link y diagrama de secuencia --- README.md | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 348c5de..e9334e5 100644 --- a/README.md +++ b/README.md @@ -43,19 +43,31 @@ Permite importar desde una base de datos de [NewPipe](https://github.com/TeamNew - sqlite3 - Importa [newpipe](https://github.com/TeamNewPipe/NewPipe/).db, *opcional* - unzip - - Extrae [newpipe](https://github.com/newsboat/newsboat)-db.zip, *opcional* + - Extrae [newpipe](https://github.com/TeamNewPipe/NewPipe/)-db.zip, *opcional* - **grep** - **sed** ---- ### Script + ```mermaid -graph TD - Main[Script] --> Link --> GetID[Obtener ID] - Main --> Lista[Lista de Links] --> GetID - Main --> BD[Base de Datos] --> Extraer[Extraer ID y Nombre] - Main --> JSON --> Validador - Extraer --> Validador - GetID --> Validador --> AddRSS[Agregar RSS] +sequenceDiagram + participant Link + participant Lista de Links + participant Base de Datos + participant Json + participant Validador + participant Agregar RSS + Link->>Validador: Obtener Id + loop Extraer Id y Nombre + Base de Datos->>Validador: + end + loop Obtener Id + Lista de Links->>Validador: + end + loop Obtener Id + Json->>Validador: + end + Validador->>Agregar RSS: a newsboat urls ```