mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 07:05:48 +01:00
11 lines
209 B
Python
11 lines
209 B
Python
"""Models for the Geocaching integration."""
|
|
|
|
from typing import TypedDict
|
|
|
|
|
|
class GeocachingOAuthApiUrls(TypedDict):
|
|
"""oAuth2 urls for a single environment."""
|
|
|
|
authorize_url: str
|
|
token_url: str
|