Arthur-Wu committed this file on 2024-11-21

This commit is contained in:
ieemoo
2024-11-21 17:47:54 +08:00
parent 0469beb719
commit b7694003ad
15 changed files with 125 additions and 2 deletions

View File

@ -38,3 +38,9 @@ class Common():
random_integer = generate_24_digit_random_integer()
return random_integer
def return_timestamp(self):
timestamp_seconds = time.time()
timestamp_milliseconds = int(timestamp_seconds * 1000)
return str(timestamp_milliseconds)