From 8a09b0aa31c5e288b6869537e7b00fddbd4e95bf Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Fri, 2 Dec 2022 12:20:43 +0100 Subject: [PATCH 1/2] Add client lib chapter to README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 14fd61b..bdf1e39 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,10 @@ The API specification uses the OpenAPI Specification (OAS) standard. The [OpenAPI Specification (OAS)](https://swagger.io/specification/) defines a standard, language-agnostic interface to RESTful APIs which allows both humans and computers to discover and understand the capabilities of the service without access to source code, documentation, or through network traffic inspection. When properly defined, a consumer can understand and interact with the remote service with a minimal amount of implementation logic. An OpenAPI definition can then be used by documentation generation tools to display the API, code generation tools to generate servers and clients in various programming languages, testing tools, and many other use cases. + +## Clients + +Client code can be generated from the API spec. + +A [C++/Qt client library](https://github.com/owncloud/libre-graph-api-cpp-qt-client) is available. + From bedaff142cd48d08d15142d9bac3736ebb5c1d9d Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Fri, 2 Dec 2022 13:22:28 +0100 Subject: [PATCH 2/2] Update README.md Co-authored-by: Michael Barz --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bdf1e39..3911649 100644 --- a/README.md +++ b/README.md @@ -20,5 +20,9 @@ An OpenAPI definition can then be used by documentation generation tools to disp Client code can be generated from the API spec. -A [C++/Qt client library](https://github.com/owncloud/libre-graph-api-cpp-qt-client) is available. + +### Available client libraries +- [C++/Qt](https://github.com/owncloud/libre-graph-api-cpp-qt-client) +- [go](https://github.com/owncloud/libre-graph-api-go) +- [typescript-axios](https://github.com/owncloud/libre-graph-api-typescript-axios)