mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 15:23:53 +08:00
version: lp-dp v0.9.4 for EON/C2 date: 2023-08-02T01:57:46 commit: 63c51d4b134e443b1ffa59dfe0fc2d50d5e0f446
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 |