()
| 65 | include_in_schema=False, |
| 66 | ) |
| 67 | async def api_get_cache_checksums(): |
| 68 | return BaseSuccessDataResponse( |
| 69 | data={ |
| 70 | "bundle_checksum": get_bundle_checksum(), |
| 71 | "plugin_checksum": get_plugin_checksum(), |
| 72 | "i18n_checksum": get_i18n_checksum(), |
| 73 | } |
| 74 | ) |
nothing calls this directly
no test coverage detected