mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-06 14:50:31 -04:00
9 lines
195 B
Python
9 lines
195 B
Python
|
|
def retrieve_time():
|
|
with open('time_tracker.txt', 'r') as file:
|
|
last_updated_time = file.read()
|
|
return last_updated_time
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(retrieve_time())
|