-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstructure.txt
More file actions
83 lines (82 loc) · 3.72 KB
/
structure.txt
File metadata and controls
83 lines (82 loc) · 3.72 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.
├── chamaa.api
├── CONTRIBUTING.md
├── docs
│ ├── api-spec.md
│ ├── architecture.md
│ └── blockchain.md
├── LICENSE
├── mvnw
├── mvnw.cmd
├── pom.xml
├── README.md
├── ROADMAP.md
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── chamaa
│ │ │ ├── blockchain
│ │ │ │ ├── BlockchainService.java
│ │ │ │ ├── ContractService.java
│ │ │ │ └── PolygonService.java
│ │ │ ├── ChamaaApplication.java
│ │ │ ├── common
│ │ │ │ ├── exceptions
│ │ │ │ │ └── ApiException.java
│ │ │ │ └── utils
│ │ │ │ └── DateUtils.java
│ │ │ ├── config
│ │ │ │ ├── AppProperties.java
│ │ │ │ ├── DatabaseConfig.java
│ │ │ │ └── SecurityConfig.java
│ │ │ ├── controllers
│ │ │ │ ├── GroupController.java
│ │ │ │ ├── LoanController.java
│ │ │ │ ├── UserController.java
│ │ │ │ └── WalletController.java
│ │ │ ├── entities
│ │ │ │ ├── BaseEntity.java
│ │ │ │ ├── Group.java
│ │ │ │ ├── Loan.java
│ │ │ │ ├── Transaction.java
│ │ │ │ ├── User.java
│ │ │ │ └── Wallet.java
│ │ │ ├── repositories
│ │ │ │ ├── GroupRepository.java
│ │ │ │ ├── LoanRepository.java
│ │ │ │ ├── TransactionRepository.java
│ │ │ │ ├── UserRepository.java
│ │ │ │ └── WalletRepository.java
│ │ │ └── services
│ │ │ ├── GroupService.java
│ │ │ ├── LoanService.java
│ │ │ ├── UserService.java
│ │ │ └── WalletService.java
│ │ └── resources
│ │ ├── application.properties
│ │ └── db
│ │ └── schema.sql
│ └── test
│ └── java
│ └── com
│ └── chamaa
│ ├── ChamaaApplicationTests.java
│ ├── GroupServiceTest.java
│ ├── LoanServiceTest.java
│ └── UserServiceTest.java
├── structure.txt
└── target
├── classes
│ ├── application.properties
│ └── db
│ └── schema.sql
├── generated-sources
│ └── annotations
└── maven-status
└── maven-compiler-plugin
└── compile
└── default-compile
├── createdFiles.lst
└── inputFiles.lst
31 directories, 50 files