Add the Cinny client (#286)

* Add the Cinny client

Signed-off-by: 3nt3 <gott@3nt3.de>

* Implement suggested edits by thibaultamartin

Signed-off-by: 3nt3 <gott@3nt3.de>

* fix instructions

Signed-off-by: 3nt3 <gott@3nt3.de>

* address things brought up in PR

Signed-off-by: 3nt3 <gott@3nt3.de>

---------

Signed-off-by: 3nt3 <gott@3nt3.de>
This commit is contained in:
3nt3
2023-02-20 09:44:15 +01:00
committed by GitHub
parent 2cf8119800
commit 7b6233217c
3 changed files with 94 additions and 0 deletions
+2
View File
@@ -24,6 +24,7 @@ import {Fluffychat} from "./Fluffychat.js";
import {NeoChat} from "./NeoChat.js";
import {Syphon} from "./Syphon.js";
import {Thunderbird} from "./Thunderbird.js";
import {Cinny} from "./Cinny.js"
export function createClients() {
return [
@@ -37,5 +38,6 @@ export function createClients() {
new NeoChat(),
new Syphon(),
new Thunderbird(),
new Cinny(),
];
}