Files
seweb/secop-webserver
2024-10-23 16:34:12 +02:00

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)