10 lines
234 B
Python
Executable File
10 lines
234 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import pathlib
|
|
sys.path.insert(0, str((pathlib.Path(__file__) / '..').resolve()))
|
|
import webserver
|
|
from dummy import SecopDummyInstrument
|
|
|
|
webserver.instrument = webserver.main(SecopDummyInstrument)
|