Returns a UUID.
()
| 166 | |
| 167 | @app.route('/uuid') |
| 168 | def view_uuid(): |
| 169 | """Returns a UUID.""" |
| 170 | |
| 171 | return jsonify(uuid=str(uuid.uuid4())) |
| 172 | |
| 173 | |
| 174 | @app.route('/headers') |
nothing calls this directly
no test coverage detected
searching dependent graphs…