Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
596c51c
1
Parent(s):
5f3d127
revert...
Browse files- Powers/__main__.py +4 -4
Powers/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ scheduler.timezone = TIME_ZONE
|
|
| 12 |
if __name__ == "__main__":
|
| 13 |
uvloop.install() # Comment it out if using on windows
|
| 14 |
Gojo().run()
|
| 15 |
-
scheduler.add_job(clean_my_db,'cron',[Gojo()],hour=3,minute=0,second=0)
|
| 16 |
-
scheduler.start()
|
| 17 |
-
if BDB_URI:
|
| 18 |
-
scheduler.add_job(send_wishish,'cron',[Gojo()],hour=0,minute=0,second=0)
|
| 19 |
scheduler.start()
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
if __name__ == "__main__":
|
| 13 |
uvloop.install() # Comment it out if using on windows
|
| 14 |
Gojo().run()
|
| 15 |
+
scheduler.add_job(clean_my_db,'cron',[Gojo()],hour=3,minute=0,second=0)
|
|
|
|
|
|
|
|
|
|
| 16 |
scheduler.start()
|
| 17 |
+
if BDB_URI:
|
| 18 |
+
scheduler.add_job(send_wishish,'cron',[Gojo()],hour=0,minute=0,second=0)
|
| 19 |
+
scheduler.start()
|