mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-02 12:00:10 +08:00
added anticheat stub
This commit is contained in:
parent
12d0e95a75
commit
8c3c6d004d
1 changed files with 11 additions and 0 deletions
11
backend/anticheat/index.ts
Normal file
11
backend/anticheat/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
export function implemented(): boolean {
|
||||
return false;
|
||||
}
|
||||
|
||||
export function validateResult(_result: object): boolean {
|
||||
return true;
|
||||
}
|
||||
|
||||
export function validateKeys(_result: object, _uid: string): boolean {
|
||||
return true;
|
||||
}
|
Loading…
Reference in a new issue