-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskAnswer.js
24 lines (23 loc) · 1.06 KB
/
taskAnswer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export class TASKANSWER {
static tasks = {
"38f6dd88-57bd-4b42-8712-286a06dac0a0": "VALUE",
"6af85c01-f68d-4311-b78a-9cf33ba5b151": "GO GET",
"d95d3299-e035-4bf6-a7ca-0f71578e9197": "Best project ever",
"53044aaf-a51f-4dfc-851a-ae2699a5f729": "HEYBLUM",
"835d4d8a-f9af-4ff5-835e-a15d48e465e6": "CRYPTOBLUM",
"3c048e58-6bb5-4cba-96cb-e564c046de58": "SUPERBLUM",
"350501e9-4fe4-4612-b899-b2daa11071fb": "CRYPTOSMART",
"b611352b-0d8c-44ec-8e0f-cd71b5922ca5": "BLUMERSSS",
"92373c2b-2bf3-44c0-90f7-a7fd146c05c5": "HAPPYDOGS",
"d2715289-b487-43bc-bc21-18224f8f6bc3": "NODOXXING",
"7067a3db-d9c5-4268-ac19-c393743e8491": "WOWBLUM",
"1572a605-d714-4f2c-8045-9c5f874d9c7e": "MEMEBLUM",
"30d9f351-614e-4565-a1bb-e7e94fc3dc3c": "Onfire",
"d2a972a1-12ab-4c7b-a411-da056609f2bd": "SOBLUM",
"56d210c1-446b-473b-b7c4-cba856b4476c": "BLUMEXPLORER"
// Add more task ids and their corresponding answers here
};
static getAnswer(taskId) {
return this.tasks[taskId] || null;
}
}