link.py 168 B

123456789
  1. # -*- coding: utf-8 -*-
  2. # (c) Nelen & Schuurmans
  3. from pydantic import AnyHttpUrl
  4. from typing_extensions import TypedDict
  5. class Link(TypedDict):
  6. href: AnyHttpUrl