From f54256046645baf580aa6fd2070ac3e39e5dc864 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 15 Feb 2024 08:59:19 -0500 Subject: [PATCH] Adding kotlin and rust lemmy API clients. (#300) * Adding kotlin and rust lemmy API clients. * Forgot period. --- src/shared/components/app-definitions.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/shared/components/app-definitions.ts b/src/shared/components/app-definitions.ts index 2ef206e..8bd13ba 100644 --- a/src/shared/components/app-definitions.ts +++ b/src/shared/components/app-definitions.ts @@ -39,6 +39,16 @@ export const API_LIBRARIES: ApiLibrary[] = [ link: "https://github.com/LemmyNet/lemmy-js-client", description: "a javascript / typescript client.", }, + { + name: "LemmyBackwardsCompatibleAPI", + link: "https://github.com/MV-GH/LemmyBackwardsCompatibleAPI", + description: "a Kotlin multiplatform Backward compatible Lemmy API.", + }, + { + name: "lemmy-client-rs", + link: "https://github.com/SleeplessOne1917/lemmy-client-rs", + description: "a Rust client for Lemmy.", + }, { name: "lemmy_api_client", @@ -53,7 +63,7 @@ export const API_LIBRARIES: ApiLibrary[] = [ { name: "Pythörhead", link: "https://github.com/db0/pythorhead", - description: "Python SDK", + description: "a Python client.", }, ];