Skip to content

Commit

Permalink
Enabling auto termination of bot after 10 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushgarg1998 committed Sep 9, 2024
1 parent 43d36fd commit d93c946
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ const afterMain = () => {
log('=> Main executed. Starting bot.');
setupBotCommands();
bot.launch();
// setTimeout(() => {
// log('=> Stopping bot. Exiting process.');
// process.exit(0);
// }, Constants.BOT_UPTIME);
setTimeout(() => {
log('=> Stopping bot. Exiting process.');
process.exit(0);
}, Constants.BOT_UPTIME);
}


Expand Down
3 changes: 1 addition & 2 deletions data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"subscribers": [],
"savedMessages": {
"result": "πŸ“… *RECENT 10 RESULTS :*\n\n*06-09-24:*\nExam (June 2024) Rechecking Result of B.COM (Hons) (No change)\n\n*06-09-24:*\nExam (June 2024) Rechecking Result of MBA (No Change)\n\n*06-09-24:*\nExam (June 2024) Result for B.Ed. 1st Sem\n\n*06-09-24:*\nExam (June 2024) Result for B.Ed. 2nd Sem\n\n*06-09-24:*\nExam (June 2024) Result for B.Ed. 3rd Sem\n\n*05-09-24:*\nExam (June 2024) Rechecking Result of BA(Economics)(Hons)\n\n*05-09-24:*\nExam (June 2024) Rechecking Result of MA(English)\n\n*03-09-24:*\nExam (June 2024) Results for LLM Weekend 2nd Sem\n\n*02-09-24:*\nExam (June 2024) Result of BPT 1st, 2nd, 3rd and 4th Annual\n\n",
"datesheet": "πŸ“… *RECENT 10 DATESHEETS :*\n\n*---:*\nFinal Theory / Practical Datesheet for End Term Examination (Sep. 2024) - Post Graduate Diploma in Cyber Security, Cyber Disaster and Block Chain Technology (III Trimester)\n\n*---:*\nProposed Theory / Practical Date sheet for Examination (Sep. 2024) for Post Graduate Diploma in Cyber Security, Cyber Disaster and Block Chain Technology, III Trimester\n\n*---:*\nFinal Practical Date sheet Examination (Aug/Sep 2024) B.Sc. (Nursing) II Sem\n\n*---:*\nFinal Theory Date sheet Final Year Supplementary Examination (Aug/Sep 2024) M.Sc.(MCDD)\n\n*---:*\nFinal Theory / Practical Datesheet of Annual Examination (Aug/Sep 2024) for BHMS, 1st Year\n\n*---:*\nFinal Theory / Practical Datesheet of Examination (Aug / Sep. 2024) for BHMS 4th Year\n\n*---:*\nFinal Theory Date sheet of Supplementary Examination (Aug/ Sep 2024) for BHMCT (7th, 8th Sem)\n\n*---:*\nProposed Theory / Practical Datesheet of Examination (Aug/Sep 2024) for B.Sc. (Nursing), II Sem\n\n*---:*\nFinal Theory / Practical of Date sheet for Supplementary Examinations (Aug. / Sep. 2024) for MBA (General), B.Tech. (Biotechnology)\n\n*---:*\nMeeting Notice regarding collection of Final Year Supplementary Examinations 2024 related material\n\n",
"circular": "πŸ“… *RECENT 10 CIRCULARS :*\n\n*---:*\nSeat Matrix for LLB\n\n*---:*\nB.SC. YOGA [CET CODE-117] CUET UG 2024 SCORE BASED PROVISIONAL MERIT LIST/ RANK ORDER LIST FOR SESSION 2024-25\n\n*---:*\nB. PHARM [CET CODE-133] CUET UG 2024 SCORE BASED PROVISIONAL MERIT LIST/ RANK ORDER LIST FOR SESSION 2024-25\n\n*---:*\nMCA/MCA (SE) (CET Code 105) CUET PG 2024 Score Based Provisional Merit List/Rank Order List for the Academic Session 2024-25\n\n*---:*\nRound 1, Cut Off Report Bachelor of Science Hons (Nursing) (Only for Unmarried Female Candidates) (NEET UG) 2024 [CODE-115] Round- 1\n\n*---:*\nSchedule for Round 03 for Paramedical (BPT/BPO/BOT/B.Sc(MLT)/BASLP) CET Code 124\n\n*---:*\nSchedule of extended 2nd Open House Counselling / Admission for M.Sc. (Environment Management) CET Code 111, Academic Session 2024-25\n\n*---:*\nRBI90Quiz National wide quiz for undergraduate students\n\n*---:*\nNotification for award of Ph.D.\n\n*---:*\nOral Examination / Evaluation of Ph.D. thesis\n\n"
"datesheet": "πŸ“… *RECENT 10 DATESHEETS :*\n\n*---:*\nFinal Theory / Practical Datesheet for End Term Examination (Sep. 2024) - Post Graduate Diploma in Cyber Security, Cyber Disaster and Block Chain Technology (III Trimester)\n\n*---:*\nProposed Theory / Practical Date sheet for Examination (Sep. 2024) for Post Graduate Diploma in Cyber Security, Cyber Disaster and Block Chain Technology, III Trimester\n\n*---:*\nFinal Practical Date sheet Examination (Aug/Sep 2024) B.Sc. (Nursing) II Sem\n\n*---:*\nFinal Theory Date sheet Final Year Supplementary Examination (Aug/Sep 2024) M.Sc.(MCDD)\n\n*---:*\nFinal Theory / Practical Datesheet of Annual Examination (Aug/Sep 2024) for BHMS, 1st Year\n\n*---:*\nFinal Theory / Practical Datesheet of Examination (Aug / Sep. 2024) for BHMS 4th Year\n\n*---:*\nFinal Theory Date sheet of Supplementary Examination (Aug/ Sep 2024) for BHMCT (7th, 8th Sem)\n\n*---:*\nProposed Theory / Practical Datesheet of Examination (Aug/Sep 2024) for B.Sc. (Nursing), II Sem\n\n*---:*\nFinal Theory / Practical of Date sheet for Supplementary Examinations (Aug. / Sep. 2024) for MBA (General), B.Tech. (Biotechnology)\n\n*---:*\nMeeting Notice regarding collection of Final Year Supplementary Examinations 2024 related material\n\n"
},
"urls": {
"result": "http://ggsipu.ac.in/ExamResults/ExamResultsmain.htm",
Expand Down

0 comments on commit d93c946

Please sign in to comment.