fetapi/webinterface.py

13 lines
243 B
Python
Raw Normal View History

2021-02-22 15:39:57 +01:00
import bottle
class FeTapWeb():
def __init__(self, api_enabled=False):
pass
@bottle.route("/")
def root():
return "<h1>Hello world!</h1>"
def start(self, host, port):
bottle.run(host=host, port=port)