def serve_static(filepath): return static_file(filepath)
def serve_root(): return static_file(b'index.html')
def serve_favicon(): return static_file(b'favicon.ico')