aboutsummaryrefslogtreecommitdiff
path: root/src/server/Client.ts
diff options
context:
space:
mode:
authorMohammad Amoush <51237606+jameshu111@users.noreply.github.com>2023-04-08 16:57:02 -0400
committerMohammad Amoush <51237606+jameshu111@users.noreply.github.com>2023-04-08 16:57:02 -0400
commit0a38e3f91f4f85f07fdbb7575ceb678032dcdfe9 (patch)
treeab08e92a3e94f4e29a9e4e7bcb36c2b47bbc546c /src/server/Client.ts
parentd51a57e1d0823fc08a90b73d427ab5e35b72422f (diff)
Clean code and Comments
Diffstat (limited to 'src/server/Client.ts')
-rw-r--r--src/server/Client.ts13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/server/Client.ts b/src/server/Client.ts
index be1ffc2ba..e6f953712 100644
--- a/src/server/Client.ts
+++ b/src/server/Client.ts
@@ -1,22 +1,11 @@
-import { action, computed } from "mobx";
+import { computed } from "mobx";
export class Client {
private _guid: string;
- // private operations: number;
constructor(guid: string) {
this._guid = guid;
- // this.operations = 0;
}
- // @computed public get OPERATIONS(): number {
- // return this.operations;
- // }
-
- // @action
- // public setOperations(newOperations: number): void {
- // this.operations = newOperations;
- // }
-
@computed public get GUID(): string { return this._guid; }
} \ No newline at end of file