add secop-webserver binary

This commit is contained in:
l_samenv
2024-10-23 13:53:54 +02:00
parent b07ca0bd4f
commit 9cee5ad9bf

9
secop-webserver Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python3
import sys
import pathlib
sys.path.insert(0, str((pathlib.Path(__file__) / '..').resolve()))
import webserver
from secop import SecopInfluxInstrument
webserver.instrument = webserver.main(SecopInfluxInstrument)