Add FluffyChat

This commit is contained in:
Christian Pauly
2021-02-13 17:24:39 +01:00
parent dc4ccaef09
commit 5923b13fc1
3 changed files with 133 additions and 4 deletions
+6 -4
View File
@@ -20,14 +20,16 @@ import {Nheko} from "./Nheko.js";
import {Fractal} from "./Fractal.js";
import {Quaternion} from "./Quaternion.js";
import {Tensor} from "./Tensor.js";
import {Fluffychat} from "./Fluffychat.js";
export function createClients() {
return [
new Element(),
new Weechat(),
new Nheko(),
new Fractal(),
new Quaternion(),
new Tensor(),
new Nheko(),
new Fractal(),
new Quaternion(),
new Tensor(),
new Fluffychat(),
];
}