mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 23:33:58 +08:00
16 lines
310 B
Python
Executable File
16 lines
310 B
Python
Executable File
#!/usr/bin/env python3
|
|
from openpilot.system.ui.lib.application import gui_app
|
|
import openpilot.system.ui.tici_reset as tici_reset
|
|
import openpilot.system.ui.mici_reset as mici_reset
|
|
|
|
|
|
def main():
|
|
if gui_app.big_ui():
|
|
tici_reset.main()
|
|
else:
|
|
mici_reset.main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|