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