feat: add weather forecasting

This commit is contained in:
insects 2025-03-11 14:57:28 +01:00
parent 6eea0dc29f
commit 705e7b1dc0
20 changed files with 181 additions and 19 deletions

View file

@ -1,5 +1,11 @@
anemos_data = TomlRB.load_file("./data/anemos.toml", symbolize_keys: true)
anemos_data = Tomlrb.load_file("./data/anemos.toml", symbolize_keys: true)
pagos_data = Tomlrb.load_file("./data/pagos.toml", symbolize_keys: true)
pyros_data = Tomlrb.load_file("./data/pyros.toml", symbolize_keys: true)
hydatos_data = Tomlrb.load_file("./data/hydatos.toml", symbolize_keys: true)
APP_DATA = {
anemos: anemos_data
anemos: anemos_data,
pagos: pagos_data,
pyros: pyros_data,
hydatos: hydatos_data
}