Coverage for src/kwai/api/v1/resources.py: 100%
4 statements
« prev ^ index » next coverage.py v7.6.10, created at 2024-01-01 00:00 +0000
« prev ^ index » next coverage.py v7.6.10, created at 2024-01-01 00:00 +0000
1"""Module that defines common JSON:API resource identifiers."""
3from typing import Literal
5from kwai.core.json_api import ResourceIdentifier
8class CountryResourceIdentifier(ResourceIdentifier):
9 """A JSON:API resource identifier for a country."""
11 type: Literal["countries"] = "countries"