9 lines
157 B
Python
9 lines
157 B
Python
"""
|
|
Stores global variables for the app.
|
|
"""
|
|
|
|
# Global variable to store the model
|
|
MODEL = None
|
|
|
|
# Global variable to track user activity
|
|
USER_ACTIVE = False |