10 lines
194 B
Python
10 lines
194 B
Python
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 / 'dev.toml')
|