Files
ServerSync/lib/mdurl/_url.py
Kevin a5d75e6bac Init
im going to bed -=-
2026-02-12 02:28:23 +02:00

15 lines
284 B
Python

from __future__ import annotations
from typing import NamedTuple
class URL(NamedTuple):
protocol: str | None
slashes: bool
auth: str | None
port: str | None
hostname: str | None
hash: str | None # noqa: A003
search: str | None
pathname: str | None