mirror of
https://gitlvb.teallvbs.xyz/IQ.Lvbs/IQ.Pilot.git
synced 2026-08-22 06:13:43 +08:00
13 lines
315 B
Python
13 lines
315 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Copyright © IQ.Lvbs, apart of Project Teal Lvbs, All Rights Reserved, licensed under https://konn3kt.com/tos/
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from openpilot.iqpilot.selfdrive.iqmodeld.tools.daemon_jit_compiler import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|