guava/test.py
Parker 382c422629
Overhaul \play\ command
- Split custom sources into helper functions
- Add proper logging and handling
- Fix LoadError embed messsage
2024-11-28 00:04:48 -06:00

12 lines
154 B
Python

import datetime
now = datetime.datetime.now(datetime.timezone.utc).strftime(
"%Y-%m-%d %H:%M:%S"
)
import time
print(now)
time.sleep(2)
print(now)