@@ -5,33 +5,31 @@ Example project of how-to use [oatpp-libressl](https://github.com/oatpp/oatpp-li
5
5
- Make client calls via HTTPS.
6
6
- Using oatpp Async API.
7
7
8
- #### More about oat++ :
8
+ See more :
9
9
10
10
- [ Oat++ Website] ( https://oatpp.io/ )
11
11
- [ Oat++ Github Repository] ( https://github.com/oatpp/oatpp )
12
+ - [ Get Started] ( https://oatpp.io/docs/start )
12
13
13
14
## Overview
14
- This project is using ` oatpp ` and ` oatpp-libressl ` modules.
15
+
16
+ This project is using [ oatpp] ( https://github.com/oatpp/oatpp ) and [ oatpp-libressl] ( https://github.com/oatpp/oatpp-libressl ) modules.
15
17
16
18
### Project layout
17
19
18
20
```
19
- - CMakeLists.txt // projects CMakeLists.txt
20
- - src/ // source folder
21
- - test/ // test folder
22
- - utility/install-oatpp-modules.sh // utility script to install required oatpp-modules.
23
- - cert/ // folder with test certificates
24
- ```
25
- ```
26
- - src/
27
- |
28
- |- controller/ // Folder containing Controller where all endpoints are declared
29
- |- client/ // HTTP client is here. Used in "proxy" endpoint /api/get
30
- |- dto/ // DTOs are declared here
31
- |- AppComponent.hpp // Service config
32
- |- Logger.hpp // Application Logger
33
- |- App.cpp // main() is here
34
-
21
+ |- CMakeLists.txt // projects CMakeLists.txt
22
+ |- src/
23
+ | |
24
+ | |- controller/ // Folder containing Controller where all endpoints are declared
25
+ | |- client/ // HTTP client is here. Used in "proxy" endpoint /api/get
26
+ | |- dto/ // DTOs are declared here
27
+ | |- AppComponent.hpp // Service config
28
+ | |- App.cpp // main() is here
29
+ |
30
+ |- test/ // test folder
31
+ |- utility/install-oatpp-modules.sh // utility script to install required oatpp-modules.
32
+ |- cert/ // folder with test certificates
35
33
```
36
34
37
35
---
0 commit comments