(path)
| 370 | @app.route('/<path:path>') |
| 371 | @app.errorhandler(404) |
| 372 | def index(path): |
| 373 | return render_template("index.html") |
| 374 | |
| 375 | if __name__ == "__main__": |
| 376 | print("Starting ComfyUI Launcher...") |
nothing calls this directly
no outgoing calls
no test coverage detected