Get table names from database
()
| 29 | |
| 30 | @bp.route('/tables', methods=['GET']) |
| 31 | def get_tables(): |
| 32 | """ |
| 33 | Get table names from database |
| 34 | """ |
| 35 | table_names = get_table_names() |
| 36 | return make_response(jsonify({"table_names": table_names}), 200) |
| 37 | |
| 38 | |
| 39 | @bp.route('/get_tables_metadata', methods=['POST']) |
nothing calls this directly
no test coverage detected