This repository has been archived on 2025-07-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
circuitbodge/circuit-laundry-notifier/__main__.py
AKP 87987553e4
Add basic API for machine states
Signed-off-by: AKP <tom@tdpain.net>
2022-11-08 01:29:49 +00:00

5 lines
105 B
Python

from web import new
if __name__ == "__main__":
app = new()
app.run(port=8080, host="127.0.0.1")