get home page, you can define your own templates :return:
()
| 77 | @app.route('/') |
| 78 | @auth_required |
| 79 | def index(): |
| 80 | """ |
| 81 | get home page, you can define your own templates |
| 82 | :return: |
| 83 | """ |
| 84 | return '<h2>Welcome to Proxy Pool System</h2>' |
| 85 | |
| 86 | |
| 87 | @app.route('/random') |
nothing calls this directly
no outgoing calls
no test coverage detected