-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsites_info.js
66 lines (64 loc) · 1.38 KB
/
sites_info.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const info = {
mess: {
text: "Mess site",
callback_data: "mess.nitt.edu",
desc: "A website for registering to various messes for every month"
},
od: {
text: "OD Portal",
callback_data: "od.nitt.edu",
desc: "A website for registering Ods"
},
scient: {
text: "Scient website",
callback_data: "scient.nitt.edu",
desc: "A website for scient"
},
spider: {
text: "Spider website",
callback_data: "spider.nitt.edu",
desc: "The spider main website"
},
sportsfete: {
text: "Sportsfete",
callback_data: "sportsfete.nitt.edu",
desc: "Backend/Website for sportsfete"
},
hostel: {
text: "Hostel site",
callback_data: "hostel.nitt.edu",
desc: "Hostel site for choosing hostels for second years."
},
general: {
text: "General Queries",
callback_data: "Club Spider (General)"
}
};
const query = {
complaint: {
text: "Complaint"
},
feature: {
text: "Feature"
},
feedback: {
text: "Feedback"
}
};
const messages = {
start: "Please select a website maintained by spider",
query: "What do you want to do?",
reply: "What do you want to tell the developers of ",
thank_you:
"Thank you for spending time for us! We will work on it." +
String.fromCodePoint(0x1f601)
};
const groups = {
complaints_portal: -1001263486323
};
module.exports = {
messages,
info,
query,
groups
};