mirror of
https://github.com/FAUSheppy/ths-datenlogger
synced 2025-12-06 20:21:35 +01:00
7 lines
125 B
Python
Executable File
7 lines
125 B
Python
Executable File
#!/usr/bin/python3
|
|
import frontend
|
|
import sys
|
|
if __name__ == "__main__":
|
|
frontend.main()
|
|
sys.exit(0)
|