mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
f99c674341
old-commit-hash: bc5fdf24ae847b3a55c04d905ed5b1acd1d71fb9
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
|