From 5f5dc041b9a403d4feddae97070690b60460a2f0 Mon Sep 17 00:00:00 2001 From: SMKRV Date: Wed, 4 Dec 2024 23:32:05 +0300 Subject: [PATCH] docs: structure --- structure.md | 51 +++++++++++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/structure.md b/structure.md index 54a472d..2d491f9 100644 --- a/structure.md +++ b/structure.md @@ -1,25 +1,32 @@ ``` ha-text-ai/ -│ -├── custom_components/ - ├── ha_text_ai/ - │ ├── __init__.py - │ ├── config_flow.py - │ ├── coordinator.py - │ ├── manifest.json - │ ├── sensor.py - │ ├── services.yaml - │ ├── const.py - │ └── api_client.py - │ - ├── translations/ - │ ├── en.json - │ ├── de.json - │ └── ru.json - │ - └── icons/ - ├── icon.png - ├── icon@2x.png - ├── logo.png - └── logo@2x.png +├── custom_components +│   └── ha_text_ai +│   ├── __init__.py +│   ├── api_client.py +│   ├── config_flow.py +│   ├── const.py +│   ├── coordinator.py +│   ├── icons +│   │   ├── dark_icon.png +│   │   ├── dark_icon@2x.png +│   │   ├── dark_logo.png +│   │   ├── dark_logo@2x.png +│   │   ├── icon.png +│   │   ├── icon@2x.png +│   │   ├── logo.png +│   │   └── logo@2x.png +│   ├── manifest.json +│   ├── sensor.py +│   ├── services.yaml +│   └── translations +│   ├── de.json +│   ├── en.json +│   ├── es.json +│   ├── hi.json +│   ├── it.json +│   ├── ru.json +│   ├── sr.json +│   └── zh.json + ```