Skip to content

Commit e4d2c2b

Browse files
authored
Update README.md
1 parent 7141cd7 commit e4d2c2b

File tree

1 file changed

+17
-19
lines changed

1 file changed

+17
-19
lines changed

README.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# ApiClient Example [![Build Status](https://dev.azure.com/lganzzzo/lganzzzo/_apis/build/status/oatpp.example-api-client?branchName=master)](https://dev.azure.com/lganzzzo/lganzzzo/_build?definitionId=14&branchName=master)
22

3-
Example project how-to use oatpp ```ApiClient``` and how it works
3+
Example project how-to use oatpp [ApiClient](https://oatpp.io/docs/components/api-client/) and how it works.
44

5-
More about oat++:
6-
- Website: [https://oatpp.io](https://oatpp.io)
7-
- ```ApiClient``` docs: [https://oatpp.io/docs/component/api-client](https://oatpp.io/docs/component/api-client)
8-
- Oat++ Repo: [https://github.com/oatpp/oatpp](https://github.com/oatpp/oatpp)
5+
See more:
6+
7+
- [Oat++ Website](https://oatpp.io/)
8+
- [Oat++ Github Repository](https://github.com/oatpp/oatpp)
9+
- [Get Started](https://oatpp.io/docs/start)
910

1011
## About ApiClient
1112

@@ -27,19 +28,16 @@ In this example you will find:
2728
### Project layout
2829

2930
```
30-
- CMakeLists.txt // projects CMakeLists.txt
31-
- src/ // source folder
32-
- test/ // test folder
33-
- utility/install-oatpp-modules.sh // utility script to install required oatpp-modules.
34-
```
35-
```
36-
- src/
37-
|- DemoApiClient.hpp // ApiClient built for http://httpbin.org/ web service
38-
|- DemoApiModels.hpp // DTOs objects for DemoApiClient
39-
|- SimpleExample.hpp // Simple (Synchronous) API calls example
40-
|- AsyncExample.hpp // Async API calls example
41-
|- App.cpp // main is here
42-
31+
|- CMakeLists.txt // projects CMakeLists.txt
32+
|- src/
33+
| |- DemoApiClient.hpp // ApiClient built for http://httpbin.org/ web service
34+
| |- DemoApiModels.hpp // DTOs objects for DemoApiClient
35+
| |- SimpleExample.hpp // Simple (Synchronous) API calls example
36+
| |- AsyncExample.hpp // Async API calls example
37+
| |- App.cpp // main is here
38+
|
39+
|- test/ // test folder
40+
|- utility/install-oatpp-modules.sh // utility script to install required oatpp-modules.
4341
```
4442
---
4543

@@ -60,7 +58,7 @@ script to install required oatpp modules.
6058
$ mkdir build && cd build
6159
$ cmake ..
6260
$ make
63-
$ ./example-api-client-exe # - run application.
61+
$ ./example-api-client-exe # - run application.
6462
6563
```
6664

0 commit comments

Comments
 (0)