()
| 48 | |
| 49 | |
| 50 | async def get_community_header() -> dict[str, str]: |
| 51 | devCode = generate_random_string() |
| 52 | header = await get_base_header(devCode) |
| 53 | header["source"] = "h5" |
| 54 | header["version"] = KURO_VERSION |
| 55 | return header |
| 56 | |
| 57 | |
| 58 | T = TypeVar("T") |
nothing calls this directly
no test coverage detected