mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-19 00:02:08 +08:00
829e3c9672
date: 2023-07-27T18:38:32 master commit: fa310d9e2542cf497d92f007baec8fd751ffa99c
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 |