()
| 53 | response_model=BaseEmptyResponse, |
| 54 | ) |
| 55 | async def api_clean_data(): |
| 56 | await redis_conn.clean_data() |
| 57 | await postgres_pool.clean_data() |
| 58 | await create_default_admin_if_needed() |
| 59 | |
| 60 | return BaseEmptyResponse() |
nothing calls this directly
no test coverage detected