Skip to content

Commit

Permalink
Initialize rush_duel_limit_regulation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlul committed Aug 11, 2024
1 parent 15cb20b commit 411ef5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/bastion.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dotenv import load_dotenv

from clients import get_api_client
from limit_regulation import master_duel_limit_regulation
from limit_regulation import master_duel_limit_regulation, rush_duel_limit_regulation
from mention import MentionsThread
from stream import CommentsThread, SubmissionsThread

Expand All @@ -15,11 +15,14 @@ def main():
load_dotenv()
api_client = get_api_client()
master_duel_limit_regulation.set_client(api_client)
rush_duel_limit_regulation.set_client(api_client)
submissions_thread = SubmissionsThread(api_client)
comments_thread = CommentsThread(api_client)
mentions_thread = MentionsThread(api_client)
master_duel_limit_regulation.update(True)
master_duel_limit_regulation.start()
rush_duel_limit_regulation.update(True)
rush_duel_limit_regulation.start()
submissions_thread.start()
comments_thread.start()
mentions_thread.start()
Expand Down

0 comments on commit 411ef5b

Please sign in to comment.