generated from RoyalMix/ROYAL--MIX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackend API
More file actions
55 lines (55 loc) · 1.5 KB
/
Backend API
File metadata and controls
55 lines (55 loc) · 1.5 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
Backend/
│── api/
│ ├── food/
│ │ ├── orders.js
│ │ ├── menu.js
│ │ ├── restaurants.js
│ │ └── payments.js
│ ├── health/
│ │ ├── doctors.js
│ │ ├── appointments.js
│ │ ├── pharmacy.js
│ │ └── insurance.js
│ ├── supplier/
│ │ ├── register.js
│ │ ├── products.js
│ │ └── invoices.js
│ ├── delivery/
│ │ ├── riders.js
│ │ ├── tracking.js
│ │ ├── dispatch.js
│ │ └── routes.js
│ ├── publicity/
│ │ ├── announcements.js
│ │ ├── ads.js
│ │ └── media.js
│ ├── ai/
│ │ ├── ai_core.js
│ │ ├── ai_voice.js
│ │ ├── ai_recommend.js
│ │ └── ai_security.js
│ ├── rewards/
│ │ ├── points.js
│ │ └── transactions.js
│ ├── common/
│ │ ├── auth.js
│ │ ├── validator.js
│ │ ├── db.js
│ │ └── utils.js
│ └── index.js
│
├── config/
│ ├── testnet.js
│ ├── production.js
│ └── security.js
│
├── middleware/
│ ├── rate_limit.js
│ ├── token_verify.js
│ └── error_handler.js
│
├── services/
│ ├── notification_service.js
│ └── payment_service.js
│
└── app.js