add launcher dev

This commit is contained in:
flandre 2025-04-12 01:33:06 +08:00
parent cf72cde59f
commit b24d71a801
3 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,9 @@
import sys
from pathlib import Path
sys.argv.append('--dev')
from flandre.launcher import launch_from_file
if __name__ == '__main__':
launch_from_file(Path(__file__).parent / 'gui.toml')
launch_from_file(Path(__file__).parent / 'dev.toml')

2
dev.toml Normal file
View File

@ -0,0 +1,2 @@
[MainUI]
[ImageCV]

View File

@ -1,6 +1,5 @@
import logging
from threading import Thread
from unittest import case
import mido
import zmq