add tensor client again

This commit is contained in:
Bruno Windels
2020-12-07 18:54:57 +01:00
parent 4aff6a96ea
commit adffdb33bb
3 changed files with 52 additions and 0 deletions
+2
View File
@@ -19,6 +19,7 @@ import {Weechat} from "./Weechat.js";
import {Nheko} from "./Nheko.js";
import {Fractal} from "./Fractal.js";
import {Quaternion} from "./Quaternion.js";
import {Tensor} from "./Tensor.js";
export function createClients() {
return [
@@ -26,5 +27,6 @@ export function createClients() {
new Weechat(),
new Nheko(),
new Quaternion(),
new Tensor(),
];
}