mirror of
https://github.com/koloideal/DutyLog.git
synced 2026-06-10 18:35:29 +03:00
9 lines
152 B
Python
9 lines
152 B
Python
from datetime import datetime, timezone, timedelta
|
|
|
|
|
|
MSK_TZ = timezone(timedelta(hours=3))
|
|
|
|
|
|
def msk_now() -> datetime:
|
|
return datetime.now(MSK_TZ)
|