-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestrutura de diretórios.txt
65 lines (65 loc) · 2.11 KB
/
estrutura de diretórios.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
estoquerapido/
├── assets/
│ ├── audios/
│ ├── fonts/
│ ├── icons/
│ ├── images/
│ │ ├── avatars/
│ │ ├── nao_utilizadas/
│ │ └── estoquerapido_img_123e4567e89b12d3a456426614174000.jpg
│ ├── media/
│ ├── styles/
│ └── manifest.json
├── src/
│ ├── components/
│ ├── controllers/
│ │ ├── __init__.py
│ │ └── user_controller.py
│ ├── domain/
│ │ └── models/
│ │ ├── __init__.py
│ │ ├── nome_pessoa.py
│ │ ├── phone_number.py
│ │ └── user.py
│ ├── pages/
│ │ ├── partials/
│ │ │ ├── __init__.py
│ │ │ └── login_button.py
│ │ ├── __init__.py
│ │ ├── home.py
│ │ ├── landing_page.py
│ │ ├── login.py
│ │ └── signup.py
│ ├── services/
│ │ ├── __init__.py
│ │ ├── app_events.py
│ │ ├── app_state.py
│ │ ├── auth_manager.py
│ │ ├── estoque-rapido-firebase-adminsdk-fbsvc-13b6b05ac2.json
│ │ ├── serviceAccountKey-EXEMPLO.json
│ │ ├── serviceAccountKey.json
│ │ ├── state_validator.py
│ │ └── user_service.py
│ ├── tests/
│ ├── utils/
│ │ ├── deep_translator.py
│ │ ├── field_validation_functions.py
│ │ └── message_snackbar.py
├── └── __init__.py
├── storage/
│ ├── data/
│ │ ├── firebase/
│ │ │ ├── __init__.py
│ │ │ ├── firebase_initialize.py
│ │ │ └── firebase_user_repository.py
│ │ ├── interfaces/
│ │ │ ├── __init__.py
│ │ │ └── user_repository.py
│ └── temp/
├── venv/
├── .env
├── .gitignore
├── estrutura de diretórios.txt
├── main.py
├── README.md
└── requirements.txt