feat: 支持天气

This commit is contained in:
2024-04-01 11:37:29 +08:00
parent 6a03003d41
commit 19308ffc53
4 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,13 @@
from liteyuki.utils.data import LiteModel
class Location(LiteModel):
name: str = ""
id: str = ""
country: str = ""
class WeatherNow(LiteModel):
time: str = ""
city: str = ""