mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-21 05:52:06 +08:00
eff388b1b6
date: 2023-07-27T18:38:32
master commit: fa310d9e25
6 lines
142 B
Python
6 lines
142 B
Python
import datetime
|
|
|
|
MIN_DATE = datetime.datetime(year=2023, month=6, day=1)
|
|
|
|
def system_time_valid():
|
|
return datetime.datetime.now() > MIN_DATE |