mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-23 23:12:04 +08:00
f4ee52f095
date: 2024-02-12T12:52:55 commit: 0f5fdc8c6be06fb8901e8be8f3fa7d00596eb1f4
7 lines
144 B
Python
7 lines
144 B
Python
import datetime
|
|
|
|
MIN_DATE = datetime.datetime(year=2024, month=1, day=28)
|
|
|
|
def system_time_valid():
|
|
return datetime.datetime.now() > MIN_DATE
|