mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-25 16:02:14 +08:00
fa724893fb
date: 2024-02-21T23:02:42
master commit: 0b4d08fab8
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
|