forked from ticketfrei/ticketfrei
11 lines
248 B
Python
11 lines
248 B
Python
from time import time
|
|
|
|
"""
|
|
This file is for shared global variables. They only stay during runtime.
|
|
|
|
For reference:
|
|
https://stackoverflow.com/questions/15959534/visibility-of-global-variables-in-imported-modules
|
|
"""
|
|
|
|
last_twitter_request = time()
|