mirror of
https://github.com/streetturtle/awesome-wm-widgets.git
synced 2024-11-17 07:49:09 +01:00
15 lines
451 B
Lua
15 lines
451 B
Lua
-------------------------------------------------
|
|
-- Allows to store API keys in one place
|
|
--
|
|
-- @author Pavel Makhov
|
|
-- @copyright 2018 Pavel Makhov
|
|
--------------------------------------------
|
|
|
|
local secrets = {
|
|
-- Yandex.Translate API key - https://tech.yandex.com/translate/
|
|
translate_widget_api_key = '<API_KEY>',
|
|
-- OpenWeatherMap API key - https://openweathermap.org/appid
|
|
weather_widget_api_key = '<API_KEY>'
|
|
}
|
|
|
|
return secrets
|