OokamiPupV2/globals.py

9 lines
179 B
Python

import time
# Store the start time globally
_bot_start_time = time.time()
def get_bot_start_time():
"""Retrieve the bot's start time globally."""
return _bot_start_time