From 65ca4c4b58f739640ae8d10d673598476a20b5bf Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:53:10 +0000 Subject: [PATCH] Commit from GitHub Actions (Get tree and commit to readme) --- README.md | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2f8fa80..b3f9061 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,11 @@ │   ├── deps.py │   └── v1 │   ├── __init__.py +│   ├── auth +│   │   ├── __init__.py +│   │   └── token.py │   └── users │   ├── __init__.py -│   ├── auth -│   │   ├── __init__.py -│   │   └── token.py │   ├── create.py │   └── retrieve.py ├── core @@ -23,27 +23,36 @@ │   └── settings.py ├── logic │   ├── __init__.py +│   ├── auth +│   │   ├── __init__.py +│   │   └── auth.py +│   ├── logic.py │   ├── security │   │   ├── __init__.py │   │   ├── jwt.py -│   │   └── pwd.py +│   │   ├── pwd.py +│   │   └── security.py │   └── users │   ├── __init__.py -│   ├── auth -│   │   ├── __init__.py -│   │   └── auth.py │   └── users.py ├── models │   ├── __init__.py +│   ├── auth +│   │   ├── __init__.py +│   │   └── token.py │   ├── base.py -│   ├── token.py -│   └── user.py +│   ├── types +│   │   ├── __init__.py +│   │   └── unix.py +│   └── users +│   ├── __init__.py +│   └── user.py └── repositories ├── __init__.py - ├── abstract.py + ├── base.py └── user.py -11 directories, 28 files +14 directories, 34 files ``` ## Create a `.env` file based on `.env.dist` and make all the necessary customizations