()
| 40 | |
| 41 | @app.get("/", response_class=HTMLResponse) |
| 42 | def login(): |
| 43 | return f""" |
| 44 | <h1>login</h1> |
| 45 | <a href="{CONFIG["SIGN_IN_URL"]}">Sign In --> {CONFIG["SIGN_IN_URL"]}</a> |
| 46 | """ |
| 47 | |
| 48 | |
| 49 | @app.get(CONFIG["APP_CALLBACK_PATH"], response_class=HTMLResponse) |
nothing calls this directly
no outgoing calls
no test coverage detected