Add NeoChat

This commit is contained in:
Carl Schwan
2021-12-25 22:52:33 +01:00
parent a39c40539f
commit 9f28514046
3 changed files with 115 additions and 0 deletions
+2
View File
@@ -21,6 +21,7 @@ import {Fractal} from "./Fractal.js";
import {Quaternion} from "./Quaternion.js";
import {Tensor} from "./Tensor.js";
import {Fluffychat} from "./Fluffychat.js";
import {NeoChat} from "./NeoChat.js";
export function createClients() {
return [
@@ -31,5 +32,6 @@ export function createClients() {
new Quaternion(),
new Tensor(),
new Fluffychat(),
new NeoChat(),
];
}